svn commit: r459630 - in head/mail/openwebmail: . files

Chris Rees crees at FreeBSD.org
Sun Jan 21 22:14:48 UTC 2018


Author: crees
Date: Sun Jan 21 22:14:47 2018
New Revision: 459630
URL: https://svnweb.freebsd.org/changeset/ports/459630

Log:
  Correct array checks
  
  Submitted by:	Emil Barta

Modified:
  head/mail/openwebmail/Makefile
  head/mail/openwebmail/files/patch-fix-perl

Modified: head/mail/openwebmail/Makefile
==============================================================================
--- head/mail/openwebmail/Makefile	Sun Jan 21 21:43:07 2018	(r459629)
+++ head/mail/openwebmail/Makefile	Sun Jan 21 22:14:47 2018	(r459630)
@@ -3,7 +3,7 @@
 
 PORTNAME=	openwebmail
 PORTVERSION=	2.53
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	mail
 MASTER_SITES=	http://openwebmail.acatysmoof.com/download/release/ \
 		http://openwebmail.org/openwebmail/download/release/

Modified: head/mail/openwebmail/files/patch-fix-perl
==============================================================================
--- head/mail/openwebmail/files/patch-fix-perl	Sun Jan 21 21:43:07 2018	(r459629)
+++ head/mail/openwebmail/files/patch-fix-perl	Sun Jan 21 22:14:47 2018	(r459630)
@@ -69,7 +69,7 @@ diff -ruN openwebmail/shares/mailfilter.pl openwebmail
                       }
                    }
 -                  if (!defined @{$r_attachments}) {
-+                  if (!@{$r_attachments}) {
++                  if (!ref{$r_attachments}) {
                       ($header, $body, $r_attachments)=ow::mailparse::parse_rfc822block(\$currmessage);
                    }
  
@@ -78,7 +78,7 @@ diff -ruN openwebmail/shares/mailfilter.pl openwebmail
                       }
                    }
 -                  if (!defined @{$r_attachments}) {
-+                  if (!@{$r_attachments}) {
++                  if (!ref{$r_attachments}) {
                       ($header, $body, $r_attachments)=ow::mailparse::parse_rfc822block(\$currmessage);
                    }
                    # check attachments


More information about the svn-ports-all mailing list