class _MaildirMailboxAppendMessageTask: (source)
Implements interfaces: twisted.internet.interfaces.IConsumer
A task which adds a message to a maildir mailbox.
| Instance Variable | mbox |
See __init__. |
| Instance Variable | defer |
A deferred which fires when the task has completed. |
| Instance Variable | opencall |
A scheduled call to prodProducer. |
| Instance Variable | msg |
The message to add. |
| Instance Variable | tmpname |
The pathname of the temporary file holding the message while it is being transferred. |
| Instance Variable | fh |
The new maildir file. |
| Instance Variable | filesender |
A file sender which sends the message. |
| Instance Variable | myproducer |
The registered producer. |
| Instance Variable | streaming |
Indicates whether the registered producer provides a streaming interface. |
| Class Variable | osopen |
Undocumented |
| Class Variable | oswrite |
Undocumented |
| Class Variable | osclose |
Undocumented |
| Class Variable | osrename |
Undocumented |
| Method | __init__ |
|
| Instance Variable | openCall |
Undocumented |
| Method | startUp |
Start transferring the message to the mailbox. |
| Method | registerProducer |
Register a producer and start asking it for data if it is non-streaming. |
| Method | prodProducer |
Repeatedly prod a non-streaming producer to produce data. |
| Method | unregisterProducer |
Finish transferring the message to the mailbox. |
| Method | write |
Write data to the maildir file. |
| Method | fail |
Fire the deferred to indicate the task completed with a failure. |
| Method | moveFileToNew |
Place the message in the new/ directory, add it to the mailbox and fire the deferred to indicate that the task has completed successfully. |
| Method | createTempFile |
Create a temporary file to hold the message as it is being transferred. |
bytes)
bool)
| Parameters | mbox | A maildir mailbox. (type: MaildirMailbox) |
| msg | The message to add. (type: bytes or file-like object) |
Fire the deferred to indicate the task completed with a failure.
| Parameters | err | The error that occurred. (type: Failure) |
Place the message in the new/ directory, add it to the mailbox and fire the deferred to indicate that the task has completed successfully.