![]() |
sponsored links |
|
|
sponsored links
|
|
1
17th June 02:58
External User
Posts: 1
|
Just wondering - is it possible to write a script for mailing a few
initial subscribe or unsubscribe messages for one's favorite lists to the server managing the listmembers or does this process depend on the web page/cgi or whatever? Not that it is all too much work via the web page, but typing a small command that does it all in a jiffy before leaving town for a week or while unpacking the bag upon one's return would be nice. -- AvH -- To UNSUBSCRIBE, email to debian-user-request@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
|
|
3
18th June 12:54
External User
Posts: 1
|
Something like this?
Create a file called subscribe containing, with lists set to taste: #!/bin/bash lists='user cd security-announce' # (for example) for x in $lists do echo | (set -x; mail -s ${0##*/} debian-${x}-request@lists.debian.org) done Then do chmod +x subscribe ln -s subscribe unsubscribe To unsubscribe do ./unsubscribe To re-subscribe do ./subscribe NB mail is in the mailx package. Substitute mutt for mail if you prefer. -- Cheers, Clive -- To UNSUBSCRIBE, email to debian-user-request@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
|
4
19th June 00:48
External User
Posts: 1
|
Thanks - that's just what I was imagining!
Cheers, -- AvH -- To UNSUBSCRIBE, email to debian-user-request@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|