1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

- Add vacation patch to fix issues with odd mail clients (*hint* MS Outlook *hint*).

PR:		ports/81281
Submitted by:	flz
Approved by:	maintainer
This commit is contained in:
Florent Thoumie 2005-05-20 09:04:47 +00:00
parent eb5574c867
commit 3fc7d32932
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=135681
2 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= postfixadmin
PORTVERSION= 2.1.0
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://high5.net/postfixadmin/ \
http://high5.net/postfixadmin/download.php?file=

View File

@ -0,0 +1,11 @@
--- VIRTUAL_VACATION/vacation.pl.orig Thu May 19 22:06:24 2005
+++ VIRTUAL_VACATION/vacation.pl Thu May 19 22:06:38 2005
@@ -160,7 +160,7 @@
my @row = $sth->fetchrow_array;
if (do_cache ($email, $orig_from)) { return; }
do_debug ("[SEND RESPONSE] for $orig_messageid:\n", "FROM: $email (orig_to: $orig_to)\n", "TO: $orig_from\n", "SUBJECT: $orig_subject\n", "VACATION SUBJECT: $row[0]\n", "VACATION BODY: $row[1]\n");
- do_mail ($orig_to, $orig_from, $row[0], $row[1]);
+ do_mail ($email, $orig_from, $row[0], $row[1]);
do_log ($orig_messageid, $orig_to, $orig_from, $orig_subject);
}