diff options
Diffstat (limited to 'mail/postfix-current/patches/patch-bg')
-rw-r--r-- | mail/postfix-current/patches/patch-bg | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/mail/postfix-current/patches/patch-bg b/mail/postfix-current/patches/patch-bg deleted file mode 100644 index 8f76730275c..00000000000 --- a/mail/postfix-current/patches/patch-bg +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-bg,v 1.3 2004/06/06 13:50:41 taca Exp $ - ---- src/local/file.c.orig 2002-11-17 08:44:57.000000000 +0900 -+++ src/local/file.c -@@ -181,7 +181,11 @@ int deliver_file(LOCAL_STATE state, - if (mail_copy_status & MAIL_COPY_STAT_CORRUPT) { - deliver_status = DEL_STAT_DEFER; - } else if (mail_copy_status != 0) { -- deliver_status = (errno == EAGAIN || errno == ENOSPC || errno == ESTALE ? -+ deliver_status = (errno == EAGAIN || errno == ENOSPC || -+#ifdef EDQUOT -+ errno == EDQUOT || -+#endif -+ errno == ESTALE ? - defer_append : bounce_append) - (BOUNCE_FLAGS(state.request), BOUNCE_ATTR(state.msg_attr), - "cannot append message to destination file %s: %s", |