summaryrefslogtreecommitdiff
path: root/mail/dma/files/patch-aliases_scan.l
diff options
context:
space:
mode:
authorEitan Adler <eadler@FreeBSD.org>2012-03-04 23:01:08 +0000
committerEitan Adler <eadler@FreeBSD.org>2012-03-04 23:01:08 +0000
commite5271c499132bc288b80053eea8f356e11dc4e44 (patch)
treeeb707eb33ad2d0d144be812a0b5ff8083f296013 /mail/dma/files/patch-aliases_scan.l
parentUpdate 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.l22
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;