Re: [Mailman-Users] control delivery processes

2014-03-04 Thread DongInn Kim
Hi Stephen, Thanks for your help. > It would help if you report the whole error that you're seeing, or if > you're not able to find the error message, precisely what behavior > leads you to think something's wrong. The error message showed up at the log message and any new mails could not go thr

Re: [Mailman-Users] control delivery processes

2014-03-04 Thread Stephen J. Turnbull
DongInn Kim writes: > Can anyone please help me to debug the syntax error in mm_cfg.py? > > ompi_list = [ 'test-crest', 'osl-test' ] > if listname in ompi_list: > archive_url = > ("http://www.open-mpi.org/community/lists/devel/%s/date.php"; % > (time.strftime("%Y/%m"))) > DEFAUL

Re: [Mailman-Users] control delivery processes

2014-03-03 Thread DongInn Kim
Yes, I already restarted mailman when I got the warning message but it did not help. Thanks, your help on Mailman/Gui/Digest.py removed the warning message. The footer message shows up as expected. Thank you again. Regards, -- - DongInn On Mar 3, 2014, at 9:17 PM, Mark Sapiro wrote: > On 03

Re: [Mailman-Users] control delivery processes

2014-03-03 Thread Mark Sapiro
On 03/03/2014 05:29 PM, DongInn Kim wrote: > > I added the ‘time’ variable to the ‘d’ dictionary in > Handlers/Decorate.py as you mentioned but I got the following error: > "Warning: The following illegal substitution variables were found in > the msg_footer string: time > Your list may not operat

Re: [Mailman-Users] control delivery processes

2014-03-03 Thread DongInn Kim
Hi Mark, Thanks for all your help but I still have a problem with updating foot_msg attribute. [root@lion Mailman]# grep -n10 time Handlers/Decorate.py 11-# GNU General Public License for more details. 12-# 13-# You should have received a copy of the GNU General Public License 14-# along with th

Re: [Mailman-Users] control delivery processes

2014-03-03 Thread Mark Sapiro
On 03/03/2014 04:46 PM, DongInn Kim wrote: > Can anyone please help me to debug the syntax error in mm_cfg.py? > > ompi_list = [ 'test-crest', 'osl-test' ] > if listname in ompi_list: > archive_url = > ("http://www.open-mpi.org/community/lists/devel/%s/date.php"; % > (time.strftime("%Y/%m"))

Re: [Mailman-Users] control delivery processes

2014-03-03 Thread Mark Sapiro
On 03/03/2014 01:25 PM, DongInn Kim wrote: > > Is there a way to send a mail after it is archived and then add the archive > link to the new mail? See the FAQ at for a way to invoke some process on a message after it is archived. This process could send an email me

Re: [Mailman-Users] control delivery processes

2014-03-03 Thread DongInn Kim
Can anyone please help me to debug the syntax error in mm_cfg.py? ompi_list = [ 'test-crest', 'osl-test' ] if listname in ompi_list: archive_url = ("http://www.open-mpi.org/community/lists/devel/%s/date.php"; % (time.strftime("%Y/%m"))) DEFAULT_MSG_FOOTER = """

Re: [Mailman-Users] control delivery processes

2014-03-03 Thread Barry S. Finkel
On 3/3/2014 3:25 PM, DongInn Kim wrote: Hi, Is there a way to send a mail after it is archived and then add the archive link to the new mail? Currently it seems to be pretty difficult to implement this because all the new mails are delivered first and then mail archives are generated. As lon

[Mailman-Users] control delivery processes

2014-03-03 Thread DongInn Kim
Hi, Is there a way to send a mail after it is archived and then add the archive link to the new mail? Currently it seems to be pretty difficult to implement this because all the new mails are delivered first and then mail archives are generated. As long as I know how mailman sends a mail, I th