diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2014-04-30 09:17:30 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2014-04-30 09:17:30 +0000 |
commit | b573f54c4ffcea197d3490e950792c7783e32dcb (patch) | |
tree | 175e362e64b69dfaa48c24f763cb6f81bcfa2da4 /usr.sbin/smtpd/smtpd.h | |
parent | 70b2df2db7914a7845e96808bc505ea0afe3d701 (diff) |
when using maildir, do not create automatically create folders to match tag
in email address (ie: gilles+tag => ~/Maildir/.tag), instead use the folder
if it already exists and deliver to the mail Maildir otherwise.
ok eric@ and chl@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 8cba92068a5..606f62a0f4d 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.458 2014/04/30 08:23:43 reyk Exp $ */ +/* $OpenBSD: smtpd.h,v 1.459 2014/04/30 09:17:29 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -621,6 +621,7 @@ struct forward_req { struct deliver { char to[SMTPD_MAXPATHLEN]; char from[SMTPD_MAXPATHLEN]; + char dest[SMTPD_MAXLINESIZE]; char user[SMTPD_MAXLOGNAME]; short mode; |