org.columba.mail.gui.message.filter |
Preprocessing filters modifying the message contents before the message
gets displayed in the message viewer.
In Columba we never change the message contents, is always saved in the mailbox
as it is. But decryption of messages makes it necessary to modify the original
message. Therefore a temporary folder is used where the modified message is
saved. All references are re-mapped to this temporary folder. This makes it
possible to execute all actions on this message as if it would be the original.
|
Java Source File Name | Type | Comment |
AbstractFilter.java | Class | Should be used by every filter, which alters the message contents. |
Filter.java | Interface | Pre-processing filter to change the message contents before it is displayed to
the user. |
PGPMessageFilter.java | Class | Filter decrypting and verifying messages.
A
SecurityStatusEvent is used to notify all listeners.
SecurityStatusViewer is currently the only listener. |
SecurityStatusEvent.java | Class | Encapsulates several security-related status information. |
SecurityStatusListener.java | Interface | Listeners should implement this interface. |