summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/runner.c
AgeCommit message (Expand)Author
2012-07-09- runner is the terminology we used back when we had runqueues, we noGilles Chehade
2012-07-09first step of simplifying fsqueue:Gilles Chehade
2012-07-08remove enum queue_kind from queue_fsqueue.c.Charles Longeau
2012-07-02Lookup queue and scheduler backends by name, rather than enum.Eric Faurot
2012-06-20Finally get rid of the queue_kind enum in the queue API. Keep thatEric Faurot
2012-06-20fix runner spinning on message loop.Eric Faurot
2012-06-17- introduce struct scheduler_info and the scheduler_info() function to fillGilles Chehade
2012-04-15Remove dead assignments and newly created unused variables.Charles Longeau
2012-03-19when a mailer daemon loop is detected, do not insert new bounce in ramqueueGilles Chehade
2012-03-07various reliability fixes:Gilles Chehade
2012-01-31fix an issue observed this week-end while flooding ajacoutot@ :Gilles Chehade
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