This is G o o g l e's cache of http://cyberdesk.com/qmail/qmail-send.html as retrieved on 15 VII 2005 21:04:35 GMT.
G o o g l e's cache is the snapshot that we took of the page as we crawled the web.
The page may have changed since that time. Click here for the current page without highlighting.
This cached page may reference images which are no longer available. Click here for the cached text only.
To link to or bookmark this page, use the following url: http://www.google.com/search?q=cache:e2WQGdSvoHcJ:cyberdesk.com/qmail/qmail-send.html+cyberdesk.com+qmail-send&hl=pl&ie=UTF-8&inlang=pl


Google is neither affiliated with the authors of this page nor responsible for its content.

cyberdesk
home | programming | film scores | qmail | computing | nyc | blog Search

Qmail-Send

Qmail-send is the core of Qmail's mail delivery process. It monitors the mail queue, dispaches individual deliveries from messages to happen at bothe the local and remote channel, schedules redelivery attempts, and asks qmail-clean to clean-up (remove) messges from the queue when they are done. It also creates the Bounce messages to return messages to the sender (via the envelope -Path ) if a message was not deliverable.

A channel refers to either the local or remote delivery queue.

The roadmap

As described, you can tell this program does a lot. At 1455 lines of C code, it is still rather compact. Still, there are several sections within the program which Bernstein has apologized for leaving the code in one large file (find the comments starting with "this file is too long").

These sections are:
  1. Main - The main processing loop. See below
  2. Filenames - routines that builds the queue file names given the message inode number
  3. Rewriting - Converts the recipient address, implementing the VERP and the "percent hack"
  4. Info - Reads the Info queue file, containing the return path (Sender address) of the message
  5. Communication - Handles writes though the pipes to the delivery subprocesses
  6. Cleanups - Handles communication to qmail-clean
  7. Priority Queues - Deals with the internal list of messages to deliver
  8. Jobs - Manges information regarding jobs, each is a delivery process.
  9. Bounces - Handles Bounced messges to the sender
  10. Deliveries - High-level delivery starting and tracking
  11. Passes - Makes a "pass" over the messages in a channel.
  12. Todo - The "To do" queue is a list of new messages that must be scheduled for delivery


Qmail-send is a busy process, but will first load the queue into the priority queue and initializes the various components above. It then will start to deliver any pending messages in the queue, filling up the maximum concurrent delivery jobs as available. It then sleeps until it gets a message send into one of its pipes: from a delivery process (lspawn, rspawn), the new-message trigger (see $QMAIL_HOME/queue/lock/trigger which is a named pipe which qmail-queue kicks whenver it inserts a new message.) It then checks and handles delivery results, processing the "to do" queue, makes another "pass" over the message delivery list, then handles any message cleanup. Then is tries to sleep again.

Such is the life of qmail-send. All this hard work, and no praise or thank yous.

Note to self: Qmail makes delivery attempys by individual devileries, not individual messages. Qmail will attempt to make all deliveries to a message concurrently. This means that if a message has 1000 recipients, it will try to deliver to each of those 1000 until theey have all been tried. After that message has been exhausted, it will get the next message out of the priority queue. This batch mentality is that qmail will process deliveries at only one message at a time within the channel (local/remote)! Therefore to qmail, each recipient of each message is ahead of all receipients of the next message; they must wait to receive their mail. This can cause an apparent bottle-neck in delivery, but really shouldn't be a problem for users who have one or a few recipients for a message.