cardinal_pythonlib.email.mailboxpurge

Remove all binary attachments from email messages

This is a standard UNIX filter; it reads a message or mailbox from standard input, and outputs it again on standard output, with all binary attachments removed (with message/external-body).

Written by Frédéric Brière <fbriere@fbriere.net>. Copy at will. Adapted from <https://code.activestate.com/recipes/576553/>, originally written by Romain Dartigues.

From https://gist.github.com/fbriere/e86584a807449e3128c0

Then rewritten a fair bit, Rudolf Cardinal, 9 Oct 2018


Original code copyright (C) 2009-2022 Rudolf Cardinal (rudolf@pobox.com).

This file is part of cardinal_pythonlib.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


cardinal_pythonlib.email.mailboxpurge.clean_message(message: Message, topmost: bool = False) Message[source]

Clean a message of all its binary parts.

This guts all binary attachments, and returns the message itself for convenience.

cardinal_pythonlib.email.mailboxpurge.gut_message(message: Message) Message[source]

Remove body from a message, and wrap in a message/external-body.

cardinal_pythonlib.email.mailboxpurge.message_is_binary(message: Message) bool[source]

Determine if a non-multipart message is of binary type.