diff options
author | W. Trevor King <wking@drexel.edu> | 2010-06-25 16:48:08 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-06-25 16:52:48 -0400 |
commit | af79a1eba9a56bb603d8b6330bfacb301ba18224 (patch) | |
tree | 2abcc5a538240dfc4fe1c0517c79ff03caa355ca | |
parent | 85de110f14f11746f38a2f23f086780a99064269 (diff) | |
download | bugseverywhere-af79a1eba9a56bb603d8b6330bfacb301ba18224.tar.gz |
Adjust update_copyright.py to handle _mailfilterrc and _procmailrc
Gour re-released _mailfilterrc under GPLv2+ following Chris'
suggestion:
Date: Fri, 25 Jun 2010 14:23:46 -0400
From: Chris Ball
Subject: Re: [Be-devel] procmail & maildrop
...
As an aside, the Public Domain license on it is mildly concerning,
but I think I'm willing to take it anyway since it's just a
standalone file. There are guidelines against using Public Domain
declarations for software, because they have different meaning in
different areas, and some areas are even thought to deny disclaiming
"moral rights" like this; I've heard that France is in this
situation.
...
Seems reasonable, so I'm doing that for my _procmailrc too.
This also means that _mailfilterrc no longer needs to be in
update_copyright.IGNORED_FILES, so I removed it. Actually,
since it lackes a '^# Copyright' line, it never had to be
there in the first place. Lazy me ;).
-rw-r--r-- | interfaces/email/interactive/_mailfilterrc | 4 | ||||
-rw-r--r-- | interfaces/email/interactive/_procmailrc | 4 | ||||
-rwxr-xr-x | update_copyright.py | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/interfaces/email/interactive/_mailfilterrc b/interfaces/email/interactive/_mailfilterrc index c47963b..303ae0a 100644 --- a/interfaces/email/interactive/_mailfilterrc +++ b/interfaces/email/interactive/_mailfilterrc @@ -1,11 +1,11 @@ +# Copyright + # .mailfilter # # see man maildrop, maildropfilter, and maildropex # # If you already have a ~/.mailfilterc file, you probably only need to # insert the bug-email grabbing stanza in your ~/.mailfilter. -# -# This file is released under GPLv2+ license. MAILDIR=$HOME/be-mail LOGFILE=$MAILDIR/maildrop.log diff --git a/interfaces/email/interactive/_procmailrc b/interfaces/email/interactive/_procmailrc index d42c0cf..639fd7c 100644 --- a/interfaces/email/interactive/_procmailrc +++ b/interfaces/email/interactive/_procmailrc @@ -1,11 +1,11 @@ +# Copyright + # .procmailrc # # see man procmail, procmailrc, and procmailex # # If you already have a ~/.procmailrc file, you probably only need to # insert the bug-email grabbing stanza in your ~/.procmailrc. -# -# This file is released to the Public Domain. MAILDIR=$HOME/be-mail LOGFILE=$MAILDIR/procmail.log diff --git a/update_copyright.py b/update_copyright.py index ba8388a..2490ba9 100755 --- a/update_copyright.py +++ b/update_copyright.py @@ -70,7 +70,7 @@ EXCLUDES = [ IGNORED_PATHS = ['./.be/', './.bzr/', './build/'] -IGNORED_FILES = ['COPYING', 'update_copyright.py', 'catmutt', '_mailfilterrc'] +IGNORED_FILES = ['COPYING', 'update_copyright.py', 'catmutt'] def _strip_email(*args): """ |