diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2012-03-04 23:01:08 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2012-03-04 23:01:08 +0000 |
commit | e5271c499132bc288b80053eea8f356e11dc4e44 (patch) | |
tree | eb707eb33ad2d0d144be812a0b5ff8083f296013 /mail/dma/files/patch-aliases_scan.l | |
parent | Update to 1.202 (diff) |
Update dma to 0.7
Also build and install the dma-mbox-create tool, which sets permissions and uid/gid on /var/mail files as needed by dma.
Changes:
Adds maasquerading support
PR: ports/165697
Submitted by: bz
Diffstat (limited to 'mail/dma/files/patch-aliases_scan.l')
-rw-r--r-- | mail/dma/files/patch-aliases_scan.l | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mail/dma/files/patch-aliases_scan.l b/mail/dma/files/patch-aliases_scan.l deleted file mode 100644 index 840e92cd41bc..000000000000 --- a/mail/dma/files/patch-aliases_scan.l +++ /dev/null @@ -1,22 +0,0 @@ ---- ./aliases_scan.l.orig 2010-10-04 21:03:33.000000000 +0200 -+++ ./aliases_scan.l 2010-12-26 22:03:33.000000000 +0000 -@@ -3,8 +3,6 @@ - #include <string.h> - #include "aliases_parse.h" - --#define YY_NO_INPUT -- - int yylex(void); - %} - -@@ -13,9 +11,9 @@ int yylex(void); - - %% - -+^([[:blank:]]*(#.*)?\n)+ ;/* ignore empty lines */ - [^:,#[:space:][:cntrl:]]+ {yylval.ident = strdup(yytext); return T_IDENT;} - [:,\n] return yytext[0]; --^([[:blank:]]*(#.*)?\n)+ ;/* ignore empty lines */ - (\n?[[:blank:]]+|#.*)+ ;/* ignore whitespace and continuation */ - \\\n ;/* ignore continuation. not allowed in comments */ - . return T_ERROR; |