summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/smtpd.c
AgeCommit message (Expand)Author
2020-12-31Rename the pony process to dispatcher and klondike to crypto.Martijn van Duren
2020-09-23Revert agentx support for now, we're too close to release.Martijn van Duren
2020-09-23Add support for agentx to smtpd.Martijn van Duren
2020-05-06Only allow forkmda() to be called from a local action dispatcher.Todd C. Miller
2020-02-24Fix two security vulnerabilities discovered by Qualys.Todd C. Miller
2020-02-03now that mail.local(8) relies on lockspool(1) for mailbox locking, have theGilles Chehade
2020-02-01condition to enter mda_mbox() is too strict, if user have commands in theirGilles Chehade
2020-01-31introduce mda_mbox() to handle mbox delivery in its own code path, and makeGilles Chehade
2019-12-18give a better name to a couple functions and struct fields related toGilles Chehade
2019-12-13add IMSG_REPORT_SMTP_LINK_GREETING, IMSG_REPORT_SMTP_LINK_IDENTIFY andGilles Chehade
2019-12-12filter protocol has an initial handshake within which smtpd tells filtersGilles Chehade
2019-09-03Exectute procs and filters from /usr/local/libexec/smtpd/ if no absoluteMartijn van Duren
2019-07-26add IMSG_REPORT_SMTP_TX_RESET to imsg_to_strGilles Chehade
2019-06-28When system calls indicate an error they return -1, not some arbitraryTheo de Raadt
2019-06-28mkstemp() returns -1 on failureTheo de Raadt
2019-06-27Allow filters to log information through stderr. This simplifies andMartijn van Duren
2019-06-13extend the resolver interface to delegate res_query() calls to the lka.Eric Faurot
2019-06-05a long long time ago, in a galaxy quite close actually, reyk@ introduced anGilles Chehade
2019-03-31Avoid calling dup2(oldd, newd) when oldd == newd. In that case theYASUOKA Masahiko
2019-01-30revert previous commit, i wasn't happy with it and it probably came from aGilles Chehade
2019-01-30don't be too strict with .forward permissions, it's ok to process it if theGilles Chehade
2018-12-23remove dead codeEric Faurot
2018-12-23revive filters tracing (-T filters) to make it easier understand what isGilles Chehade
2018-12-13do not use err() on fork_processor() exitGilles Chehade
2018-12-13we don't want to parse a filter command lineGilles Chehade
2018-12-11do some imsg renaming to make them more clearGilles Chehade
2018-12-11remove unused imsg namesGilles Chehade
2018-12-07Refactor certificate initialization and verification.Eric Faurot
2018-12-06bring the first bits of DATA filtering plumbing but bypass it for nowGilles Chehade
2018-11-25flock was needed by delivery_filename which was moved to the standalone MDAGilles Chehade
2018-11-16add missing imsg namesEric Faurot
2018-11-03remove log_debugGilles Chehade
2018-11-01allow smtpd to fork processes at startup and maintain a socketpair withGilles Chehade
2018-09-04upon mda failure, smtpd would assume tempfail and retry. this is at oddsGilles Chehade
2018-07-25Implement a generic interface to forward resolver queries to the lkaEric Faurot
2018-06-28Don't ignore -n; OK gilles@Tim van der Molen
2018-06-18simplify parse_config() further so it no longer has any side effect outsideGilles Chehade
2018-06-03split forkmda() in two:Gilles Chehade
2018-05-31remove 'where' parameter from all x*() functions in utils.c, it doesn'tGilles Chehade
2018-05-29RECIPIENT should really be the dest address, post-expansion, not rcptGilles Chehade
2018-05-29provide mail user agents with the same environments as PostfixGilles Chehade
2018-05-24switch smtpd to new grammarGilles Chehade
2018-05-14kill corrupt / uncorrupt queue mechanism as it has never been usable and itGilles Chehade
2018-04-26sync log.h with other daemonsEric Faurot
2018-01-27Avoid passing NULL to vprintf() by assigning a name to client processes. Whileanton
2017-11-21no need to check the sending process in imsg handlers when there is noEric Faurot
2017-09-08remove more filter-related cruftEric Faurot
2017-05-12queue is not owned by _smtpd but _smtpq so a bug in lookup process does notGilles Chehade
2017-01-09smtpd joins the 7 other daemons that share the same log.c file.Reyk Floeter
2016-10-19add -F to usage() too;Jason McIntyre