summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd
AgeCommit message (Expand)Author
2009-02-05when calling ssl_session_destroy() from mta, our session will have a NULLGilles Chehade
2009-01-30when decreasing ssl related counters, make sure the session was flagged asGilles Chehade
2009-01-30improve statistics for smtp process. not only collect the current sessionsGilles Chehade
2009-01-30clear the F_EVLOCK flag earlier to prevent the error event handler fromGilles Chehade
2009-01-30Do not break header for messages received via smtp.Oleg Safiullin
2009-01-30bump descriptors limit to the max and set the maximum connections count toGilles Chehade
2009-01-30fix a very annoying events masking issue which would cause a fatal() to beGilles Chehade
2009-01-30more const -> sizeof()Oleg Safiullin
2009-01-30fix debug messageOleg Safiullin
2009-01-30o remove useless `if'sOleg Safiullin
2009-01-29fix compiler warningJacek Masiulaniec
2009-01-29Implement "smtpctl show stats"; ok gilles@Jacek Masiulaniec
2009-01-29better parsing of .forward filesOleg Safiullin
2009-01-29missing prototype for session_respond() in mta, move session_respond()'sGilles Chehade
2009-01-29- remove debug messageGilles Chehade
2009-01-29Received header line was incomplete for mail submitted through the enqueuerGilles Chehade
2009-01-29fix a bug in mta's event maskingGilles Chehade
2009-01-29initial starttls support in mta, this allows:Gilles Chehade
2009-01-29bring initial support for SSL in the mta part of smtpd, allowing for:Gilles Chehade
2009-01-29Common queue walking code for smtpd and smtpctl. Kills majority of showqueue.c,Jacek Masiulaniec
2009-01-29- remove a very annoying debug printf()Gilles Chehade
2009-01-28fix missing prototype and format related warningsGilles Chehade
2009-01-28now that mta uses a struct session, it can also use session_respond() justGilles Chehade
2009-01-28mta session state belongs to struct session, not struct batch, remove theGilles Chehade
2009-01-28everything we need for the event handling dance is in struct session, theGilles Chehade
2009-01-28since we're expanding "relay via ssl foobar.org" into two mxhosts (one withGilles Chehade
2009-01-28first steps towards better mta code. currently mta uses struct batch toGilles Chehade
2009-01-28cleanup; ok gilles@Jacek Masiulaniec
2009-01-28when pausing listeners, do not simply disable their events as newGilles Chehade
2009-01-28reuse recipient_to_path; ok gilles@Jacek Masiulaniec
2009-01-28relayhost flags were not properly copied to the relayhost array of theGilles Chehade
2009-01-28Make races between queue and runner impossible by implementing the policy:Jacek Masiulaniec
2009-01-28if recipient was provided as a username, append the local hostname, thisGilles Chehade
2009-01-28bring loop detection support. we handle this with a qmail-like approach whichGilles Chehade
2009-01-28move some functions from queue.c to queue_shared.c as they are not onlyGilles Chehade
2009-01-28in safe_fclose, ensure file is closed upon return, and additionallyJacek Masiulaniec
2009-01-28">From" escaping and \n appending is not needed for maildir; ok gilles@Jacek Masiulaniec
2009-01-28add a struct path to struct message so that we can keep track of the RCPTGilles Chehade
2009-01-28a bit of enqueue cleanup, and while at it set the sender local address toGilles Chehade
2009-01-28- remove debug messagesGilles Chehade
2009-01-27instead of relying on socket permissions to allow or disallow imsg's thatGilles Chehade
2009-01-27follow the naming convention of other files, discussed with jacekm@Gilles Chehade
2009-01-27first bricks of enqueue code which allows smtpctl to submit mail to queueGilles Chehade
2009-01-27err, actually session_set_path was moved to utils.c because it was used byGilles Chehade
2009-01-27*** empty log message ***Gilles Chehade
2009-01-27the data member of ibuf was not set to the environment in control_accept()Gilles Chehade
2009-01-27temporarily drop privileges to the final user before each delivery attempt,Gilles Chehade
2009-01-26move some queue related functions that are needed outside of smtpd to theGilles Chehade
2009-01-26we had a set of functions to deal specifically with incoming messages andGilles Chehade
2009-01-21temporary quick fix to an issue that needs more thinking; ok gilles@Jacek Masiulaniec