*Mailman Tips 5 [#h0f05d31]
[[Mailman on FreeBSD]]~
[[Mailman Tips]]~
[[Mailman Tips 2]]~
[[Mailman Tips 3]]~
[[Mailman Tips 4]]~

#contents
**mailmanのmsg_header の変更 [#xca0562c]
 【環境】
 FreeBSD 6.3-p6 Postfix(2.3.8) Mailman(version 2.1.9)
 ○通し番号カスタマイズ○本文機種文字対策菊地先生方式^^
 ○[mmjp-users 2258] 添付のMIMESubject.patch(by Nagae様)適応済み。
 
 【やりたいこと】
 メール本文中に表示されるヘッダ、msg_header を指定した時間に自動変更し
 たい。というものです。
 
 MailmanのGUIな操作で「メーリングリスト管理」>「普通配送オプション」
   普通配送会員へのメールに付けるヘッダ 
   (msg_headerの詳細)
 で設定変更出来ますが、これをコマンドラインなどからcron で、例えば大晦
 日の24時00分に(各ML一斉に)変更したい、などと考えています。
 
 どのような方法がありますでしょうか。あるいは、すでに実装されている機
 能でしょうか。

 リストの設定をコマンドラインから操作するには
 Mailman 付属ユーティリティの withlist が使えます。
 
 例えばこんなスクリプトを用意しておいて
 change_header.py:
 def change_header(mlist):
 	mlist.Lock()
         mlist.msg_header = "[%s %%d]" % mlist.real_name
         mlist.Save()
 
 $ sudo -u mailman bin/withlist -a -r change_header
 とでも与えて実行すれば全リストの msg_header が書き変わ 
 るはずです。

個別のMLの場合
 change_header_1.py:
 def change_header(mlist):
 	mlist.Lock()
         mlist.msg_header = "[%s %%d]" % mlist.real_name
         mlist.Save()
 
 $ sudo -u mailman bin/withlist -l -r change_header_1 <Mlist_name>
 とでも与えて実行すれば全リストの msg_header が書き変わ 
 るはずです。
個別のMLの場合で日本語での複数行ヘッダの場合

日本語での複数行ヘッダの場合

cat change_header_1.py
 #! /usr/bin/env python
 #-*- coding: euc-jp -*-
 
 def change_header_1(m):
         m.msg_header = "┏━━━━━━━━━━\n┃あいうえ日本語\n┗━━━━━━━━━━"
         m.Save()

等と表記して、文字コードをeucで保存して
 # /usr/local/mailman/bin/withlist -l -r change_header_1 test
すると
 ┏━━━━━━━━━━
 ┃あいうえ日本語
 ┗━━━━━━━━━━
の様に変更され表示されます。:-)



 % ./withlist -h
 General framework for interacting with a mailing list object.
 
 There are two ways to use this script: interactively or programmatically.
 Using it interactively allows you to play with, examine and modify a MailList
 object from Python's interactive interpreter.  When running interactively, a
 MailList object called `m' will be available in the global namespace.  It also
 loads the class MailList into the global namespace.
 
 Programmatically, you can write a function to operate on a MailList object,
 and this script will take care of the housekeeping (see below for examples).
 In that case, the general usage syntax is:
 
 % bin/withlist [options] listname [args ...]
 
 Options:
 
    -l / --lock
        Lock the list when opening.  Normally the list is opened unlocked
        (e.g. for read-only operations).  You can always lock the file after
        the fact by typing `m.Lock()'
 
        Note that if you use this option, you should explicitly call m.Save()
        before exiting, since the interpreter's clean up procedure will not
        automatically save changes to the MailList object (but it will unlock
        the list).
 
    -i / --interactive
        Leaves you at an interactive prompt after all other processing is
        complete.  This is the default unless the -r option is given.
 
    --run [module.]callable
    -r [module.]callable
        This can be used to run a script with the opened MailList object.
        This works by attempting to import `module' (which must be in the
        directory containing withlist, or already be accessible on your
        sys.path), and then calling `callable' from the module.  callable can
        be a class or function; it is called with the MailList object as the
        first argument.  If additional args are given on the command line,
        they are passed as subsequent positional args to the callable.
 
        Note that `module.' is optional; if it is omitted then a module with
        the name `callable' will be imported.
 
        The global variable `r' will be set to the results of this call.
 
    --all / -a
        This option only works with the -r option.  Use this if you want to
        execute the script on all mailing lists.  When you use -a you should
        not include a listname argument on the command line.  The variable `r'
        will be a list of all the results.
 
    --quiet / -q
        Suppress all status messages.
 
    --help / -h
        Print this message and exit
 
 
 Here's an example of how to use the -r option.  Say you have a file in the
 Mailman installation directory called `listaddr.py', with the following
 two functions:
 
 def listaddr(mlist):
    print mlist.GetListEmail()
 
 def requestaddr(mlist):
    print mlist.GetRequestEmail()
 
 Now, from the command line you can print the list's posting address by running
 the following from the command line:
 
 % bin/withlist -r listaddr mylist
 Loading list: mylist (unlocked)
 Importing listaddr ...
 Running listaddr.listaddr() ...
 mylist@myhost.com
 
 And you can print the list's request address by running:
 
 % bin/withlist -r listaddr.requestaddr mylist
 Loading list: mylist (unlocked)
 Importing listaddr ...
 Running listaddr.requestaddr() ...
 mylist-request@myhost.com
 
 As another example, say you wanted to change the password for a particular
 user on a particular list.  You could put the following function in a file
 called `changepw.py':
 
 from Mailman.Errors import NotAMemberError
 
 def changepw(mlist, addr, newpasswd):
    try:
        mlist.setMemberPassword(addr, newpasswd)
        mlist.Save()
    except NotAMemberError:
        print 'No address matched:', addr
 
 and run this from the command line:
 % bin/withlist -l -r changepw mylist somebody@somewhere.org foobar
 
 
----
#counter([total|today|yesterday]);

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS