diff options
| author | bwarsaw | 2000-02-26 00:05:50 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-02-26 00:05:50 +0000 |
| commit | 83f54a7198fdc8e94d4a861b14612a6290b0c975 (patch) | |
| tree | 2a335c65be765cfd078ea3fc778d10c88e1f1b5e | |
| parent | ba288e3ffc091498d15d1e46baa11c1a679bf839 (diff) | |
| download | mailman-83f54a7198fdc8e94d4a861b14612a6290b0c975.tar.gz mailman-83f54a7198fdc8e94d4a861b14612a6290b0c975.tar.zst mailman-83f54a7198fdc8e94d4a861b14612a6290b0c975.zip | |
main(): set the `torequest' attribute to 1 on the message object.
Diffstat (limited to '')
| -rwxr-xr-x | scripts/mailcmd | 1 | ||||
| -rwxr-xr-x | scripts/request | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/scripts/mailcmd b/scripts/mailcmd index 6a8267677..824fd1adf 100755 --- a/scripts/mailcmd +++ b/scripts/mailcmd @@ -45,6 +45,7 @@ def main(): try: s = StringIO(sys.stdin.read()) msg = Message.Message(s) + msg.torequest = 1 mlist.ParseMailCommands(msg) finally: mlist.Save() diff --git a/scripts/request b/scripts/request index 6a8267677..824fd1adf 100755 --- a/scripts/request +++ b/scripts/request @@ -45,6 +45,7 @@ def main(): try: s = StringIO(sys.stdin.read()) msg = Message.Message(s) + msg.torequest = 1 mlist.ParseMailCommands(msg) finally: mlist.Save() |
