summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/runner.c
AgeCommit message (Expand)Author
2012-01-28add optional display handler to scheduler_backend, if not NULL the handlerGilles Chehade
2012-01-28- introduce the scheduler_backend APIGilles Chehade
2012-01-13Stop using envelope->status to report delivery outcome to theEric Faurot
2012-01-12we should never use ramqueue_first_envelope() as a mean to determine theGilles Chehade
2012-01-12The status field in the envelope is confusing. Its only purpose is toEric Faurot
2012-01-12the ramqueue filling at startup was busted, it would load envelopes one byGilles Chehade
2012-01-12now that we no longer do a stateful iteration on schedule queue, we needGilles Chehade
2012-01-11Simplify runner/queue by getting rid of Q_PURGE. Instead, let smtpdEric Faurot
2011-11-16remove unused functionsEric Faurot
2011-11-15Qwalk, our API to linearly walk over the persistent queue, did not take theGilles Chehade
2011-11-14when receiving an unexpected imsg, print its name.Charles Longeau
2011-11-07Let the smtpd process handle the enqueueing of offline messages atEric Faurot
2011-10-27Use PRI{x,d}64 in format strings instead of %llx, %lld or %qd to print {u_,}i...Charles Longeau
2011-10-26- fix smtpctl pause/resume so the ramqueue scheduling is done correctlyGilles Chehade
2011-10-23fsqueue no longer stores envelopes by dumping the structure, instead use aGilles Chehade
2011-10-09show messages sent between processes in debug modeEric Faurot
2011-09-18a single ramqueue message may be shared by many ramqueue envelopes to beGilles Chehade
2011-09-01Introduce a small set of functions to manage stat counters in aEric Faurot
2011-08-30Call free() into ramqueue_remove_{batch,host,message,envelope}() instead of j...Charles Longeau
2011-08-29cast all printed time_t to long long int, and change format string accordingly.Charles Longeau
2011-08-29add missing header needed by signal()Charles Longeau
2011-08-26add missing header needed by time()Charles Longeau
2011-08-17- plug a memory leak in runner_remove_envelope()Gilles Chehade
2011-08-17move ramqueue_host pointer from ramqueue_envelope to ramqueue_message.Gilles Chehade
2011-08-17- teach smtpctl remove about the new ramqueue structureGilles Chehade
2011-08-16add a host-tree and an envelope-tree in the ramqueue, they will be used toGilles Chehade
2011-07-21- update smtpctl.8 to reflect realityGilles Chehade
2011-05-16murder struct path and make sure smtpd uses simpler structures that do notGilles Chehade
2011-05-01the smtpd env is meant to be global, so do not pass it all around.Eric Faurot
2011-04-17cleanups, cosmethic changes, functions that should be static are now staticGilles Chehade
2011-04-17a structure describing an envelope should be called struct envelope, notGilles Chehade
2011-04-15whenever an envelope is reinserted into the ramqueue after a trip to mda orGilles Chehade
2011-04-15kill message_id and message_uidGilles Chehade
2011-04-15temporarily add fsqueue_hash() prototype until runner is fully converted toGilles Chehade
2011-04-14bye bye queue_hash() you can now rest in peace.Gilles Chehade
2011-04-14- implement fsqueue_message_create() and fsqueue_message_commit()Gilles Chehade
2011-04-14fsqueue now provides fsqueue_message_fd_r() and fsqueue_message_fd_rw() toGilles Chehade
2011-04-14fsqueue queue backend will implement a filesystem queue:Gilles Chehade
2011-04-13following an idea from jacekm@, smtpd now uses a ram-queue instead of doingGilles Chehade
2010-11-28remove all unused headersGilles Chehade
2010-11-28a bit of .h cleanups, no functionnal changeGilles Chehade
2010-11-24add *maxactive statsTodd T. Fries
2010-10-28teach smtpd how to handle per-rule delays for message expiry, this allowsGilles Chehade
2010-10-09these need to be re-added tooGilles Chehade
2010-06-01new queue, again; gcc2 compile tested by deraadtJacek Masiulaniec
2010-06-01New queue doesn't compile on gcc2, back out. Spotted by deraadt@Jacek Masiulaniec
2010-05-31Rewrite entire queue code.Jacek Masiulaniec
2010-05-19cleanup-only commit, removes unrequired includes, no functionnal changeGilles Chehade
2010-04-22Fix a case of runner trying to send imsg directly to smtp process insteadJacek Masiulaniec
2010-04-22- kill the runner_imsg_compose wrapper to reduce indirectionJacek Masiulaniec