home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume43 / SmartList / part02 < prev    next >
Internet Message Format  |  1994-07-05  |  56KB

  1. From: berg@pool.informatik.rwth-aachen.de (Stephen R. van den Berg)
  2. Newsgroups: comp.sources.misc
  3. Subject: v43i067:  SmartList - mailinglist package v3.03, Part02/05
  4. Date: 5 Jul 1994 21:26:49 -0500
  5. Organization: Sterling Software
  6. Sender: kent@sparky.sterling.com
  7. Approved: kent@sparky.sterling.com
  8. Message-ID: <2vd4p9$nin@sparky.sterling.com>
  9. X-Md4-Signature: 8ca11255fa395e62a0d007db1d75c20b
  10.  
  11. Submitted-by: berg@pool.informatik.rwth-aachen.de (Stephen R. van den Berg)
  12. Posting-number: Volume 43, Issue 67
  13. Archive-name: SmartList/part02
  14. Environment: procmail, sendmail, ZMailer, smail, /bin/mail, UNIX, POSIX
  15.  
  16. #! /bin/sh
  17. # This is a shell archive.  Remove anything before this line, then feed it
  18. # into a shell via "sh file" or similar.  To overwrite existing files,
  19. # type "sh file -c".
  20. # Contents:  procmail-3.03/SmartList/INTRO
  21. #   procmail-3.03/SmartList/Manual
  22. #   procmail-3.03/SmartList/bin/arch_retrieve
  23. #   procmail-3.03/SmartList/bin/createlist
  24. #   procmail-3.03/SmartList/etc/unsubscribe.txt
  25. # Wrapped by kent@sparky on Tue Jul  5 21:10:30 1994
  26. PATH=/bin:/usr/bin:/usr/ucb:/usr/local/bin:/usr/lbin:$PATH ; export PATH
  27. echo If this archive is complete, you will see the following message:
  28. echo '          "shar: End of archive 2 (of 5)."'
  29. if test -f 'procmail-3.03/SmartList/INTRO' -a "${1}" != "-c" ; then 
  30.   echo shar: Will not clobber existing file \"'procmail-3.03/SmartList/INTRO'\"
  31. else
  32.   echo shar: Extracting \"'procmail-3.03/SmartList/INTRO'\" \(9413 characters\)
  33.   sed "s/^X//" >'procmail-3.03/SmartList/INTRO' <<'END_OF_FILE'
  34. X$Id: INTRO,v 1.8 1994/05/26 14:10:53 berg Exp $
  35. X
  36. X            How to set up mailing lists
  37. X            ---------------------------
  38. X
  39. X    Copyright (c) 1993-1994, Stephen R. van den Berg, The Netherlands.
  40. X                 <berg@pool.informatik.rwth-aachen.de>
  41. X
  42. XThis document mainly describes a sendmail environment, much of it applies
  43. Xto non-sendmail mail agents as well.
  44. X
  45. X
  46. XContents:
  47. X---------    1. Intro
  48. X        2. Bouncing mail
  49. X        3. The disadvantages
  50. X        4. How to circumvent these disadvantages
  51. X        5. Why use procmail to filter the mailinglist mail?
  52. X        6. How do I use procmail to filter the mailinglist mail?
  53. X
  54. X1. Intro
  55. X   -----
  56. X
  57. XThe simplest and most direct way to setup a mailinglist is by inserting a line
  58. Xin the /usr/lib/aliases file looking like:
  59. X
  60. Xmylist: fred,john, wilma, barney@bedrock, pebbles
  61. X
  62. XNow all the mail arriving at your machine for "mylist" (either local or
  63. Xmylist@your.domain) will be automatically forwarded to all the mentioned
  64. Xaddresses (fred, john, etc.).
  65. X
  66. XThe address mylist@your.domain is intended for submissions to the list that
  67. Xare supposed to be forwarded to all the subscribers.  For the administrative
  68. Xtasks like removals from the list, new subscriptions to the list, or address
  69. Xchanges of subscribers, it is common practice to create a second entry in the
  70. X/usr/lib/aliases file:
  71. X
  72. Xmylist-request: your_login_name@your.domain
  73. X
  74. X
  75. X2. Bouncing mail
  76. X   -------------
  77. X
  78. XIn order to deal with bouncing mail gracefully, an extra precaution should
  79. Xbe taken.  If for example mail to wilma bounces (user non-existent, mail
  80. Xfilesystem full, etc.), it will bounce back to the original sender.
  81. XNow, the only person that should be concerned with distribution failures
  82. Xshould be the mylist-request holder.  Therefore you should be using a
  83. Xsendmail special alias like:
  84. X
  85. Xowner-mylist: mylist-request@your.domain
  86. X
  87. XThis way local mail will bounce back to mylist-request@your.domain.
  88. X
  89. X
  90. X3. The disadvantages
  91. X   -----------------
  92. X
  93. XIf you are using the above methods, some obvious disadvantages come to mind
  94. Xhowever:
  95. X
  96. Xa. The subscriber list cannot exceed 1000 bytes (on many sendmails).
  97. Xb. The subscriber list cannot be changed on-the-fly (/usr/lib/aliases needs
  98. X   to be edited, and newaliases has to be run).
  99. Xc. People cannot be prevented from submitting messages like "Please remove
  100. X   me from this mailinglist" to mylist (and thereby annoying all subscribers).
  101. Xd. People cannot be guarded from themselves in case they insert
  102. X   "Return-Receipt-To:" fields in their headers (if they are particularly
  103. X   unlucky, they will receive an acknowledge mail from *every* subscriber's
  104. X   sendmail).
  105. Xe. People including "Errors-To:" or "Sender:" fields can cause the bounce
  106. X   messages to bypass owner-mylist anyway.
  107. Xf. There is no way of limiting the number of submitters, i.e. every person
  108. X   who knows the name of the mailing list and who can send mail to your.domain
  109. X   is able to submit messages to the list.  This means, for example, that you
  110. X   cannot limit a mailing list to local users (i.e. only local users can
  111. X   submit).
  112. Xg. You are unable to insert a "Reply-To: mylist@your.domain" in case you
  113. X   would want to (this makes replying to the list easier, too easy as some
  114. X   people say).
  115. X
  116. X
  117. X4. How to circumvent these disadvantages
  118. X   -------------------------------------
  119. X
  120. Xa. Can be circumvented by using nested aliases like:
  121. X    mylist: mylist1, mylist2
  122. X    mylist1: fred,john
  123. X    mylist2: wilma,barney@bedrock,pebbles
  124. X   This can however, become extremely messy to maintain.
  125. X
  126. Xb. This can be avoided if you use aliases like:
  127. X    mylist: :include:/path/to/the/memberfile
  128. X   The memberfile should contain:
  129. X    fred,john,wilma,barney@bedrock,pebbles
  130. X   This will also take care of the upper limit on aliases expansions and
  131. X   newaliases need not be run again every time you change the file.
  132. X
  133. Xc. Can only be taken care of by using a mailfilter like procmail.
  134. X
  135. Xd. Can only be taken care of by using a mailfilter like procmail.
  136. X
  137. Xe. Can only be taken care of by using a mailfilter like procmail.
  138. X
  139. Xf. Can only be taken care of by using a mailfilter like procmail.
  140. X
  141. Xg. Can only be taken care of by using a mailfilter like procmail.
  142. X
  143. X
  144. X5. Why use procmail to filter the mailinglist mail?
  145. X   ------------------------------------------------
  146. X
  147. XInstead of using a mailfilter you could also take care of most of the problems
  148. Xthree till seven by editing the sendmail.cf file.  I would strongly recommend
  149. Xagainst this approach however, since this will be too much of a customising
  150. Xoperation and surely will not be a trivial task (in all cases).     As a general
  151. Xrule: don't mess with a sendmail.cf file once it works :-).
  152. X
  153. XNow, you could, instead of procmail, simply use immediate VNIX commands
  154. Xlike grep, sed or awk to do the mail filtering.     Again, there are some obvious
  155. Xdisadvantages with this approach:
  156. X
  157. XA. In case any system resources go out (no more file descriptors, no more
  158. X   swap space, process table full, file system full (for temporary files))
  159. X   your awk or shell script will fail generously (i.e. several bad things
  160. X   could happen: mail munged, truncated, lost, hanging awk or sh programs,
  161. X   etc., you get the picture).
  162. X
  163. XB. All mail headers (including From: and Reply-To:) could very well be
  164. X   multi-line headers; it will be very difficult to make it understandable
  165. X   to awk that somehow the header line could continue on the next line
  166. X   (in case you want to remove a header, or do some complicated substitution).
  167. X
  168. XC. Another hairy problem will be determining the end of the header, of course
  169. X   that is solvable, but you have to make some extra precautions in your
  170. X   awk script to ensure that any substitutions/changes will not occur in
  171. X   the body of the message (further degrading performance and increasing the
  172. X   load on your machine).
  173. X
  174. XD. Starting programs directly from within aliases or .forward files can get
  175. X   extremely messy, since the environment the program starts in is
  176. X   potentially hostile.
  177. X
  178. XProcmail does not *directly* allow you to change any headers, but that
  179. Xfeature is not really necessary since you can tell procmail to send ONLY the
  180. Xheader through some filter of your choice.
  181. X
  182. XTo comment on the previously mentioned three disadvantages:
  183. X
  184. XA. Procmail takes care of that.     Should the filter have problems anyway,
  185. X   procmail will graciously notice that the filter was in some kind of
  186. X   trouble, and will try something else with the original unmunged mail
  187. X   (you can specify what it should do of course, obvious choices: try
  188. X   the same filter again, drop the mail in a file and send you a notice,
  189. X   forward the mail to you instead (unfiltered), etc.)
  190. X
  191. XB. In order to make consistent scanning of the header possible using the
  192. X   egrep regular expressions built in to procmail, procmail will internally
  193. X   concatenate any headers that were continued according to the RCF 822
  194. X   recommendations, in order for external filters to benefit from this, you
  195. X   would use the formail program to pre-filter the mail.
  196. X
  197. XC. Procmail can be told to send the header, the body or both through the
  198. X   filter, hence your filter need not watch out to avoid doing any
  199. X   substitutions in the body, and the filter can therefore be a lot simpler.
  200. X
  201. XD. Procmail makes no assumptions about the environment it is started in, it
  202. X   assumes that everything is hostile and fights its way back to the
  203. X   civilised world by initialising *everything* to sane and expected default
  204. X   values.  Thereby providing a warm bed for any program started from within
  205. X   procmail.
  206. X
  207. XBut procmail has some additional advantages as well:
  208. X
  209. X -- It will probably all go a bit faster, since only the header of the mail
  210. X    is being piped through the filter.    Also, procmail reads in the mail in
  211. X    16KB chunks, not line by line as sed does.
  212. X
  213. X -- You could use procmail to filter out any messages to the normal mailing
  214. X    list that should have gone to the mylist-request and remail them to
  215. X    mylist-request.
  216. X
  217. XWell, anyway, as you see, procmail does not give you everything you would want,
  218. Xbut this was intentional in accordance to the true VNIX spirit (modularity).
  219. XWhat procmail does provide is a *very* reliable hook (you might say it
  220. Xprovides an anchor :-) for any mail processing you might do.  For the more
  221. Xcomplex things you still have to use shell scripts or call other programs
  222. Xfrom within procmail, but then again, that saves you from learning any
  223. Xparticular syntax procmail would have had to do the same.
  224. X
  225. XAs it happens, the accompanying formail program is able to cater to most
  226. X(if not all) of your needs regarding mail munging.
  227. X
  228. X
  229. X6. How do I use procmail to filter the mailinglist mail?
  230. X   -----------------------------------------------------
  231. X
  232. XIn order to cater for most wishes regarding mailinglist setup, I took the
  233. Xliberty to write some rcfiles for procmail that can readily be used to create
  234. Xany number of mailinglists in a comfortable and simple way.  They are
  235. Xcalled the "SmartList" mailinglist package.
  236. X
  237. XSee the FEATURES file in this directory for more information on what
  238. Xthe SmartList mailinglist scripts will do for you.
  239. X
  240. XIf the scripts do not exactly do what you would have liked, you are invited to
  241. Xedit them to taste.  Perhaps you could send your changes to the SmartList
  242. Xmailinglist if you feel that they could be useful to others.
  243. X
  244. XTo get started I suggest you read the INSTALL file in this directory.
  245. X
  246. XFor operating instructions you should read the Manual file in this directory.
  247. X
  248. X
  249. XP.S. Any suggestions/corrections/improvements on this document are welcome.
  250. END_OF_FILE
  251.   if test 9413 -ne `wc -c <'procmail-3.03/SmartList/INTRO'`; then
  252.     echo shar: \"'procmail-3.03/SmartList/INTRO'\" unpacked with wrong size!
  253.   fi
  254.   # end of 'procmail-3.03/SmartList/INTRO'
  255. fi
  256. if test -f 'procmail-3.03/SmartList/Manual' -a "${1}" != "-c" ; then 
  257.   echo shar: Will not clobber existing file \"'procmail-3.03/SmartList/Manual'\"
  258. else
  259.   echo shar: Extracting \"'procmail-3.03/SmartList/Manual'\" \(27452 characters\)
  260.   sed "s/^X//" >'procmail-3.03/SmartList/Manual' <<'END_OF_FILE'
  261. X        SmartList mailinglist management
  262. X        --------------------------------
  263. X
  264. X    Copyright (c) 1993-1994, Stephen R. van den Berg, The Netherlands.
  265. X                 <berg@pool.informatik.rwth-aachen.de>
  266. X
  267. XNOTE: Run "flist -v" to find out more about your installed version of
  268. X      SmartList.
  269. X
  270. XContents:
  271. X---------    1. Creating and removing mailinglists or archive servers
  272. X        2. Remote maintenance of mailinglists
  273. X        3. Customisation
  274. X        3a.Digest processing
  275. X        3b.Restricting subscriptions
  276. X        3c.Restricting submissions
  277. X        3d.Auto subscription on first submission
  278. X        3e.Autosending files to new subscribers
  279. X        3f.Moderated lists
  280. X        3g.List of lists
  281. X        3h.Positively discriminate certain daemons
  282. X        3i.Default help text replies
  283. X        3j.Unsubscribe assistance
  284. X        3k.Schematic overview of what goes on behind the scenes
  285. X        4. The archive server
  286. X        5. The format of the dist file
  287. X        6. Multigram and the thresholds in rc.init/rc.custom
  288. X        7. Choplist & sendmail
  289. X        8. FTP addresses & the SmartList mailinglist
  290. X
  291. X$Id: Manual,v 1.36 1994/06/22 19:05:07 berg Exp $
  292. X
  293. X
  294. X1. Creating and removing mailinglists or archive servers
  295. X   -----------------------------------------------------
  296. X
  297. XMake sure that the .bin directory is in your PATH.  Now you can issue
  298. Xcommands like:
  299. X
  300. X    createlist testing
  301. X    createlist testing joe@somewhere.edu
  302. X    createlist -a testing joe@somewhere.edu
  303. X    removelist testing
  304. X
  305. XThe first command creates a mailinglist with two useful addresses:
  306. X
  307. X    testing
  308. X    testing-request
  309. X
  310. XThe second command does the same, but it also specifies joe@somewhere.edu
  311. Xto be the responsible contact person for this list.
  312. X
  313. XThe third command does the same, except instead of creating a mailinglist,
  314. Xit creates an archive server.
  315. X
  316. XThe fourth command removes all traces of the "testing" mailinglist again.
  317. X
  318. XThere are three other convenience-utilitis that can be used:
  319. X    delink
  320. X        It will unlink a file from its hardlinked counterpart(s)
  321. X        (without deleting it).
  322. X    showlink
  323. X        It will display what groups of files are linked together.
  324. X    donatelist
  325. X        It will put a list under complete and exclusive control
  326. X        of the maintainer (a local user).  See below.
  327. X
  328. XIf you are running several lists maintained by separate maintainers, you
  329. Xcan give a maintainer complete and sole control over his or her own list
  330. Xwithout the need for them to have user list or group list rights.
  331. XFor this to work, you simply have to "donatelist the_maintainer his_list"
  332. Xthe whole tree that contains his list to him (her).  Make sure that the
  333. Xgroup id of all necessary files in the tree are still group-writable by
  334. X"list", because that's the access privilege the mailinglist will be running
  335. Xunder.
  336. X
  337. XThe maintainer has to be careful to use an umask of 007 while editing in
  338. Xhis mailinglist directory.  This allows the mailinglist-programs to function
  339. Xwhile still limiting access to all mailinglist files to *one* person only
  340. X(the maintainer).
  341. X
  342. X
  343. X2. Remote maintenance of mailinglists
  344. X   ----------------------------------
  345. X
  346. XTo facilitate remote maintenance of some mailinglists by their maintainers
  347. XI have created the .bin/x_command script.  It parses mails sent to the
  348. X-request address and can execute some administrative commands.
  349. X
  350. XThe mail should be sent to the -request address of a mailinglist and
  351. Xshould contain a field in the header looking like this:
  352. X
  353. XX-Command: joe@somewhere.edu password command
  354. X
  355. X"command" can be anything of the following:
  356. X
  357. X    subscribe mailaddress
  358. X    unsubscribe mailaddress
  359. X    checkdist mailaddress        To multigram-match mailaddress to
  360. X                    the list (showing the eight best
  361. X                    matches)
  362. X    showdist            To list the distfile
  363. X    showlog                To list the log
  364. X    wipelog                To clear the log
  365. X    help                To show this command summary
  366. X    info                Ditto
  367. X
  368. XThe exact fieldname defaults to "X-Command", but can be customised to
  369. Xwhatever you want.
  370. X
  371. XThe password defaults to "password", but can/should be changed.
  372. X
  373. XThe "joe@somewhere.edu" is always the mail address of the maintainer.  Note
  374. Xthat this has to match what was specified on the command line of
  375. X"createlist" when the list was created.
  376. X
  377. XNote that the X-Command: field has to be part of the header, when it's
  378. Xin the body of the mail, it has no effect.
  379. X
  380. XAnytime an X-Command: mail has been processed, the results will be
  381. Xmailed back to the maintainer of the list, and the X-Command: field
  382. Xwill have been renamed to X-Processed:.
  383. X
  384. XAlthough this remote-facility is convenient, some might argue that it
  385. Xpresents a security hole.  Well, in order to make this hole as small as
  386. Xpossible, you can keep the password secret.  Also, the exact mailaddress
  387. Xof the maintainer might not be publicly known.    You can simply change
  388. Xthe X-Command field into something else like X-MyCommand.  Above all, since
  389. Xfaking mail is a well known possibility it would be ridiculous to take
  390. Xmore precautions than these.  Besides, if someone indeed manages to sneek in
  391. Xa bogus X-Command:, it will never go unnoticed since the mailing list
  392. Xmaintainer (and only the maintainer) will always receive the X-Processed:
  393. Xmail.
  394. X
  395. XFor your convenience, a sample script "doxcommand" is present in the
  396. XSmartList/examples directory.  It can be used to easily generate these
  397. XX-Command mails.  Do remember to read-protect this script once the password
  398. Xhas been changed.
  399. X
  400. X
  401. X3. Customisation
  402. X   -------------
  403. X
  404. XThe mailinglists can be customised in several ways:
  405. X
  406. X- For all the lists:
  407. X    - Since all the lists initially share the same help.txt, subscribe.txt,
  408. X      unsubscribe.txt, rc.init, rc.submit and rc.request files
  409. X      (hardlinked), any change to them will affect all lists.
  410. X    - Since all the lists have the .bin directory in their PATH, any
  411. X      change to one of the Bourne shell scripts in there will affect
  412. X      them all.
  413. X- Per list:
  414. X    - Every list directory contains an "rc.custom" rcfile which can
  415. X      be edited to your hearts content to customise certain parameters
  416. X      for this list only.
  417. X    - Small local customisations can be realised by uncommenting one
  418. X      or more of the RC_LOCAL_* assignments in rc.custom.
  419. X      You then have to create the appropriate rc.local* file in which
  420. X      you can put any commands you'd like (e.g. adding a general signature
  421. X      or disclaimer to every outgoing submission).
  422. X    - For graver customisation you can remove the hardlink (using
  423. X      .bin/delink for example) to any of the files in a list directory and
  424. X      provide that list with its own copy in order to edit that to taste.
  425. X    - Since the current directory is in the PATH before the .bin
  426. X      directory you can create per-list copies of any of the Bourne shell
  427. X      scripts in .bin which can then be changed without affecting the
  428. X      other lists.
  429. X- Per group of lists:
  430. X    - The same applies as when customising per list, but you should
  431. X      then hardlink the appropriate files among the group of list
  432. X      directories.
  433. X
  434. XIf you are not using the remote-maintenance facility and you start editing
  435. Xor customising scripts/files by hand, then you should make sure that there
  436. Xdoesn't arrive any mail to those lists that are affected by your changes.
  437. X
  438. XIf you are editing while the system is running you can temporarily put
  439. Xincoming mails on hold;     you can do this:
  440. X
  441. X- for all the lists by creating the file:    .etc/rc.lock
  442. X- only for one list by creating the file:    rc.lock
  443. X  in the list directory of that list.
  444. X
  445. XThe .bin/flist command checks to see if these rc.lock files exist AND are
  446. Xnot older than 17 minutes before delivering the mail.  So, if you create
  447. Xan rc.lock file, mails to that (or all) lists will stall for the next
  448. X17 minutes.  If you need more time, touch the file every so often.
  449. XYou should remove the rc.lock files again after finishing your editing.
  450. X
  451. XIf you would like to change the -dist alias (used to distribute the
  452. Xmail to the subscribers) into something less well known, go right ahead,
  453. Xbut remember to change the corresponding assignment to listdist.  For
  454. Xcompleteness sake one should also correct the createlist and removelist
  455. Xscripts in that case.  If you are using chopdist to expand the dist-file,
  456. Xthen you don't even need a -dist alias at all.
  457. X
  458. X
  459. X3a.Digest processing
  460. X   -----------------
  461. X
  462. XYou can configure a list to send out digests of accumulated submissions.
  463. XIn order to do so, simply uncomment the appropriate assignment to
  464. Xdigest_flag in rc.init (if you want all lists to be digested) or rc.custom
  465. X(if you only want this list to be digested).  Digests are then sent out
  466. Xevery so often depending on size and age of the accumulated messages.
  467. X
  468. XThe conditions for sending out a digest are checked during the arrival
  469. Xof every submission.  If, however, traffic on the list sometimes is very low
  470. X(i.e. less often than the maximum age of a digest) a digest could be laying
  471. Xaround for longer than the specified maximum period (3 days by default).
  472. X
  473. XIn order to make sure that the digest gets sent out anyway, you should be
  474. Xrunning the .bin/cronlist program every so often.  The recommended
  475. Xprocedure is to create a cron job (under the list account) that contains
  476. Xsomething like the following entry:
  477. X
  478. X0 6 * * * /home/list/.bin/cronlist
  479. X
  480. XThe cronlist script can be customised to taste (maybe you'll need to
  481. Xadjust the setting of the PATH variable).
  482. XBeware: call cronlist with an absolute or relative path, do not rely on
  483. XPATH to find it for you (cronlist uses $0 to find the location of the
  484. Xlists it is responsible for).
  485. X
  486. XBy default, cronlist will run the flush_digests program.
  487. XBy using the above listed crontab entry, you will ensure that at six o'clock
  488. Xin the morning all the overdue digests will be sent out.
  489. X
  490. XFlush_digests normally checks the age of the digest and does not send it
  491. Xout until it is overdue.  If you want to force flush_digests to send out
  492. Xa digest of a particular list, you can create the file ".digest.force" in
  493. Xthat list's directory.    During the next run of flush_digests, it will
  494. Xremove .digest.force and push out the digest (if any) regardless of its age.
  495. X
  496. XIf you create a file named digest.admin in either the main directory of
  497. Xthe digested list or in the archive/latest directory belonging to it, it
  498. Xwill be picked up by the next flush_digests and included up front to the
  499. Xactual digest under the heading "Administrivia".
  500. XThe archive/latest/digest.admin file digested list will be automatically
  501. Xremoved after the digest has been pushed out.
  502. XThe digest.admin file in the main directory of the digested list will not be
  503. Xremoved and is included in every digest.
  504. X
  505. XIf you want to give your subscribers the choice of receiving digests or not.
  506. XThis is what you can do:
  507. X
  508. X    Create two lists.  E.g. if your list would be called "thelist", then
  509. X    you have the `real' list called "thelist" (created and used like
  510. X    a regular list) and the `digested' list called "thelist-d".
  511. X
  512. X    In the distfile of thelist you should include thelist-d as one of
  513. X    the subscribers.  In the rc.custom file of thelist-d you should
  514. X    edit the assignment to undigested_list to read
  515. X    "undigested_list =    thelist@$domain".
  516. X
  517. X    After you've done this, you're all set.     People that want digests
  518. X    simply subscribe to thelist-d and people that don't, subscribe to
  519. X    thelist.
  520. X
  521. X
  522. X3b.Restricting subscriptions
  523. X   -------------------------
  524. X
  525. XThere are three ways in which you can restrict who can subscribe to a list:
  526. X- You can put the addresses of unwanted subscribers on the so-called reject-
  527. X  list (the `reject'-file).
  528. X- You can create a program (e.g. a shell script) called "subscreen".  It must
  529. X  be executable and will receive the mail address of the prospective subscriber
  530. X  as the first argument.  If subscription for that address is allowed, the
  531. X  program must return with exitcode zero.  If subscription is disallowed,
  532. X  simply return with exitcode one.  A sample program is provided in the
  533. X  examples directory.
  534. X- You can completely disable automatic subscription by uncommenting the
  535. X  appropriate "auto_subscribe" line in rc.custom.
  536. X
  537. X
  538. X3c.Restricting submissions
  539. X   -----------------------
  540. X
  541. XYou can restrict submissions to people on the accept-list (the `accept'-file).
  542. XMail from anyone else will be passed on to the maintainer instead of being
  543. Xsubmitted.  To enable this you have to uncomment the appropriate
  544. X"foreign_submit" line in rc.custom.  By default the accept file is hardlinked
  545. Xto the dist file (i.e. if submissions are restricted, only subcsribers
  546. Xcan do so).  If you want to allow only an even more select group, delink the
  547. Xaccept file and edit it to taste.
  548. X
  549. XBeware that using an accept file is incompatible with having an owner- alias
  550. Xfor this list (procmail administered lists do not need the owner- alias
  551. Xanyway).
  552. X
  553. XIf, in addition to notifying the maintainer you want an automated reply
  554. Xto be generated to the submitter which was not in the accept file, then you
  555. Xcan accomplish this by simply creating an accept.txt file.  Its contents
  556. Xwill (like the contents of the help.txt file) be returned to the submitter.
  557. X
  558. XThis feature is not the same as a moderated list, the two features can be
  559. Xused accumulatively.
  560. X
  561. X
  562. X3d.Auto subscription on first submission
  563. X   -------------------------------------
  564. X
  565. XInstead of rejecting submissions by people not on the accept (dist) list,
  566. Xyou can enable "force_subscribe".  This will cause people submitting
  567. Xmails to the list to be autosubscribed to the list if they were not in the
  568. Xdist file.
  569. X
  570. X
  571. X3e.Autosending files to new subscribers
  572. X   ------------------------------------
  573. X
  574. XYou can create a file named "subscribe.files".    It can contain any
  575. Xnumber of archive-server commands.  The results (i.e. the files requested)
  576. Xwill be sent to the new subscriber.
  577. X
  578. X
  579. X3f.Moderated lists
  580. X   ---------------
  581. X
  582. XFirst create a file named "moderators", it should contain the fully
  583. Xqualified mail addresses of all the moderators for this list (i.e. just
  584. Xlocal usernames are not sufficient, at least include an @host or host! ).
  585. XThen uncomment the appropriate "moderated_flag" line in rc.custom.
  586. X
  587. XFrom then on all mail that does not contain an
  588. X"Approved: the_address_of_one_of_the_moderators" field is forwarded to
  589. Xall the moderators.
  590. X
  591. XOne of the moderators should then resend the mail to the list after adding
  592. Xan "Approved: his_own_address" field to the header (and possible editing
  593. Xthe contents of the mail).  It will be no problem if several moderators
  594. Xresubmit the same submission concurrently, since the mailinglist will
  595. Xfilter out duplicates anyway (i.e. only the first one will go out and
  596. Xbe archived).
  597. X
  598. X
  599. X3g.List of lists
  600. X   -------------
  601. X
  602. XIf you want people to be able to get an overview of which lists are
  603. Xpublicly available at your site, you can have your listmaintainers create
  604. Xa file called "info.txt" in their respective list directory.  This info.txt
  605. Xfile should contain a short description of the purpose and main topic of
  606. Xthis particular list.
  607. X
  608. XYou can then setup a command like examples/gatherinfo in crontab to collect
  609. Xall these various info.txt files once a day.
  610. X
  611. XThe thus gathered info.txt files can be placed in a directory which can
  612. Xbe accessed by a gopher or ftp server, or, you can put them into the
  613. Xarchive directory of a procmail-managed mail-archive server (e.g. under
  614. Xthe mail-alias "metalist").
  615. X
  616. X
  617. X3h.Positively discriminate certain daemons
  618. X   ---------------------------------------
  619. X
  620. XSmartList usually does not accept submissions or subscriptions from daemons.
  621. XIf you'd like to make an exception for some, you can do this by tuning
  622. Xthe daemon_bias variable.  A sample template can be found in the rc.init
  623. Xfile.  This variable can of course be set in the rc.init, rc.custom or
  624. Xrc.local files.     Instead of directly specifying a weight and a regexp, you
  625. Xcan just specify a weight.  You'll then have to make sure that the variable
  626. Xis set only when mail from your special daemons arrives.
  627. X
  628. X
  629. X3i.Default help text replies
  630. X   -------------------------
  631. X
  632. XBy uncommenting the appropriate "auto_help" line in the rc.custom file the
  633. Xlist will respond to every undecipherable request message as if it requested
  634. Xhelp.  Messages that will still get through to the maintainer are those:
  635. X- that seem to come from a daemon.
  636. X- which look like a reply.
  637. X
  638. XDepending on the typical audience you have on the list, enabling this might
  639. Xnot be a good idea.
  640. X
  641. X
  642. X3j.Unsubscribe assistance
  643. X   ----------------------
  644. X
  645. XBy uncommenting the appropriate "unsub_assist" line in the rc.custom file
  646. Xyou can turn on the unsubscribe assistance.  If the someone is trying to
  647. Xunsubscribe from the list, but his mailaddress could not be found, he
  648. Xwill receive back a number of multigram matches (determined by the value
  649. Xof unsub_assist) between his unsubscribe message and the dist file.
  650. X
  651. XIf you'd like to enable this feature, please keep the following points
  652. Xin mind:
  653. X- People can get excerpts of the dist file this way.
  654. X- Malevolent individuals might become encouraged to unsubscribe lots
  655. X  of people from your list.  This will not go by unnoticed, of course.
  656. X  It will be logged and the innocent subscribers will receive a copy
  657. X  of the unsubscribe request they didn't send.    Nevertheless, it can cause
  658. X  considerable inconvenience.
  659. X
  660. X
  661. X3k.Schematic overview of what goes on behind the scenes
  662. X   ----------------------------------------------------
  663. X
  664. XSuppose you have two entries in the aliases file, one for thelist@domain
  665. Xand one for thelist-request@domain.
  666. X
  667. XWhenever mail arrives for either address, the following happens:
  668. X    - flist is started suid root with thelist as its argument
  669. X        - changes its current directory to that of the (internally
  670. X          hardcoded) main list directory
  671. X        - changes its uid and gid to that of the (internally
  672. X          hardcoded) list account
  673. X        - changes its current directory to that of thelist
  674. X        - waits until both ../.etc/rc.lock and rc.lock are gone or
  675. X          are old enough (17 minutes)
  676. X
  677. XThen, if it was a regular submission to thelist@domain:
  678. X    - flist execs procmail with rcfile rc.submit
  679. X        - pulls in rc.init that sets up the defaults
  680. X        - pulls in rc.custom that overrides some defaults (if any)
  681. X        - checks the submission format
  682. X            - if needed it now checks:
  683. X                - the accept list
  684. X                - the moderators list (Approved:)
  685. X            - checks the msgid cache for duplicate submissions
  686. X            - if needed does digest processing (and stop)
  687. X        - archives the mail
  688. X        - munges the header of the mail to taste
  689. X        - fires off sendmail to send the mail to thelist-dist@domain
  690. X    - If the mail was an administrative request, it does not get
  691. X      passed on to the list, instead, procmail pulls in rc.request
  692. X
  693. XBut, if it was an administrative mail for thelist-request@domain:
  694. X    - flist execs procmail with rcfile rc.request
  695. X        - pulls in rc.init that sets up the defaults
  696. X        - pulls in rc.custom that overrides some defaults (if any)
  697. X        - performs the necessary actions, depending on the content
  698. X        - if the content was undecipherable, it gets passed on to
  699. X          the maintainer of thelist
  700. X
  701. XIf there are grave system failures during all this, the catch-all script
  702. Xrc.post will kick in and make sure that the mail is stashed away somewhere
  703. Xor forwarded to the maintainer, whatever works.     This to ensure that no
  704. Xmail gets lost.
  705. X
  706. X
  707. X4. The archive server
  708. X   ------------------
  709. X
  710. XAll mail (except mail being forwarded from another mailinglist) sent to any
  711. Xof the lists is archived.  The archiving is fairly straightforward.
  712. XE.g. if you have a list called "scuba", then all submissions are archived
  713. Xin scuba/archive/latest/.  The mails will be stored one-mail-per-file each.
  714. XThe files will be numbered.
  715. X
  716. XNow, normally, only the last two mails will be kept around, the others
  717. Xare periodically removed.  This in order to keep down the archiving costs
  718. Xfor people with limited diskspace.  To change the size of the archive-history
  719. Xedit the rc.custom file.  To get more sophisticated archiving, like grouping
  720. Xsubmissions monthly, you should either create a cron job or edit the
  721. X.bin/arch_trunc file.
  722. X
  723. XThe archive server can be accessed per mailinglist by sending mail
  724. Xto the -request address with the following Subject:
  725. X
  726. X    Subject: archive
  727. X
  728. XThe body of the mail or the rest of the subject line can then be
  729. Xfiled with requests to the archive server.  It basically understands
  730. Xfive commands:
  731. X
  732. X    get file ...
  733. X    ls directory ...
  734. X    egrep case_insensitive_regular_expression file ...
  735. X    maxfiles nnn
  736. X    help
  737. X
  738. XThe archive server does a thorough check on the commands and the files
  739. Xthat are requested.  This to ensure that it does not access any files
  740. Xoutside the "scuba/archive" directory.    Any text-file that you put in
  741. Xthe "scuba/archive" directory (or any of its subdirectories) can now be
  742. Xretrieved by the archive commands.
  743. X
  744. XIf a file requested via the archive server starts with a header that begins
  745. Xwith `Content-Type:', then the file is sent out as is, without encapsulation.
  746. XThis allows you to prepare the files in special formats that are directly
  747. Xsupported by the recipient's mailuser agent.  The leading Content-Type: and
  748. Xany immediately following fields will become part of the header.
  749. X
  750. XAll other files are MIME-encapsulated before transmission.  You should take
  751. Xa look at /home/list/.bin/mimencap.local if you want to extend or customise
  752. Xthe recognised file types.
  753. X
  754. XThe MIME-encapsulation is automatic and depends on the availability of the
  755. Xmetamail package in the PATH defined in rc.init.  The programs from this
  756. Xpackage which need to be available are: mimencode and splitmail.
  757. XIf mimencode is not found on the PATH, the files will be sent out with a
  758. Xstandard wrapper around them.
  759. X
  760. XIf you put links in the "scuba/archive" tree, you can allow the archive
  761. Xserver to retrieve files from other parts of the filesystem.
  762. X
  763. XThe whole archive server can be found in the .bin/arch_retrieve script.
  764. XThe archive server can be extended with arbitrary commands via the
  765. Xexamples/retrieve.local script that comes with the distribution.
  766. X
  767. X
  768. X5. The format of the dist file
  769. X   ---------------------------
  770. X
  771. XYou do not need to know this, unless you edit the dist file by hand or want
  772. Xto incorporate an existing list of addresses.
  773. X
  774. XIn order to distribute incoming submissions the dist file is fed to sendmail
  775. Xwith the regular :include: alias.  So the format of this file must
  776. Xbe in accordance with what sendmail would expect.  In addition to that
  777. Xthis file is searched and edited by multigram in order to find particular
  778. Xsubscribers.  The format which multigram expects is a bit more rigid than
  779. Xwhat sendmail allows.
  780. X
  781. XThe following conditions apply:
  782. X- One subscriber per line.
  783. X- Empty lines are allowed.
  784. X- The mail address of the subscriber must be the first word on the line.
  785. X- Comments may follow the address (but separated from the address by
  786. X  at least one whitespace character).
  787. X- Everything preceding the line containing:
  788. X    (Only addresses below this line can be automatically removed)
  789. X  is write protected from changes by multigram (i.e. these addresses can
  790. X  never be automatically/accidentally unsubscribed).
  791. X- If the line:
  792. X    (Only addresses below this line can be automatically removed)
  793. X  is not present at all, automatic unsubscriptions to this list are impossible.
  794. X- Whenever multigram automatically removes an address from the list, it
  795. X  rewrites the dist file `in situ'.  This means that the dist file will be
  796. X  contracted at that point, any excess slack at the end will be overwritten
  797. X  by newlines (i.e. the dist file never shrinks, this because ANSI-C does not
  798. X  provide a truncate() command of some kind).  I choose to write in situ in
  799. X  order to avoid copying the dist file every time it changes (a real life
  800. X  saver if the list grows too big).
  801. X- Multigram always adds new subscribers on the line immediately following the
  802. X  last filled entry in the dist file.
  803. X
  804. XSome sample entries (the preferred format):
  805. X    joe@some.where
  806. X    joe@some.where (some comment)
  807. X    joe@some.where (some comment) (some more comments)
  808. X
  809. XDepreciated, but allowed:
  810. X    <joe@some.where>
  811. X    <joe@some.where> some comment
  812. X    <joe@some.where> (some comment)
  813. X
  814. XNot allowed by multigram (although sendmail doesn't mind):
  815. X    (some comment) joe@some.where
  816. X    some comment <joe@some.where>
  817. X
  818. X
  819. X6. Multigram and the thresholds in rc.init/rc.custom
  820. X   -------------------------------------------------
  821. X
  822. XThe rc.init and rc.custom scripts define some threshold values:
  823. X
  824. X    match_threshold, off_threshold, reject_threshold, submit_threshold.
  825. X
  826. XThese values are fed to multigram as a cut-off value with which to decide
  827. Xif a certain mail address is on a list.
  828. XThe higher the threshold, the better the match must be.     The thresholds
  829. Xhave a scale from -16383 to 32767.  This means that, for instance a threshold
  830. Xof 30730 can be used to find only mailaddresses that are almost verbatim
  831. Xon the list.  A value of 24476 on the other hand allows for some error
  832. X(like mailaddresses munged by gateways etc.) in finding matches to the
  833. Xlist.
  834. X
  835. XThe values 30730 and 24476 are somewhat arbitrary values which seem
  836. Xto work well for the particular problems at hand.
  837. X
  838. XTo get a feeling for the values computed by multigram you can do
  839. Xthe following test:
  840. X
  841. X    Create a file with the same format as the distfile, fill it with
  842. X    any number of addresses you like (e.g. you could take an existing
  843. X    distfile).
  844. X    Now make a copy of this `distfile' and alter some of the addresses
  845. X    a bit (like omit one character, or add some gateway information,
  846. X    switch two words, change it into an uucp address, etc.).
  847. X    Next you should call up multigram with the following command line:
  848. X
  849. X        multigram -l-16000 -b300 pseudo_distfile <altered_distfile
  850. X
  851. X    Multigram will display up the 300 best matches it found after
  852. X    crossreferencing altered_distfile and pseudo_distfile.
  853. X    The output produced by multigram can be disected as follows:
  854. X
  855. X        lineno. name1 goodness name2
  856. X
  857. X    Lineno. and name1 refer to the line number in pseudo_distfile which
  858. X    contains the mailaddress name1.     Goodness is the metric that
  859. X    corresponds to the aforementioned threshold values, and name2 is
  860. X    the matching mailaddress from altered_distfile (which is usually
  861. X    the incoming mail).
  862. X
  863. X    Once you get the hang of it you can play around a bit with the
  864. X    entries in altered_distfile by mutilating them more and more in
  865. X    order to see what multigram makes of it (try inserting some non-
  866. X    existing addresses as well).
  867. X
  868. X
  869. X7. Choplist & sendmail
  870. X   -------------------
  871. X
  872. XThere are two ways of distributing the message to the addresses listed
  873. Xin the dist file: either directly through sendmail and the :include:
  874. Xalias expansion, or indirectly, through choplist which does the
  875. Xexpansion itself and calls up sendmail on suitable chunks.
  876. X
  877. XBy default, choplist takes care of the expansion, uncomment the appropriate
  878. Xalt_sendmail environment variable in rc.init to revert to standard sendmail
  879. Xexpansion.
  880. X
  881. XChoplist tries to make sure that even for big lists, the alias expansion
  882. Xgoes as swiftly as possible and several sendmails will be delivering the
  883. Xmail to the subscribers concurrently.  The various limits that can be
  884. Ximposed on this process can be tuned in the rc.init file.
  885. X
  886. XMost sendmails will do a worse job without choplist as a preprocessor.
  887. X
  888. XA side effect of using choplist as a preprocessor is that there is no need for
  889. Xa -dist alias anymore.
  890. X
  891. X
  892. X8. FTP addresses & the SmartList mailinglist
  893. X   -----------------------------------------
  894. X
  895. XA recent version can be picked up at various comp.sources.misc archives.
  896. XThe latest version can be obtained directly from the ftp-archive at:
  897. X
  898. X    ftp.informatik.rwth-aachen.de
  899. X
  900. Xas (g)zipped tar file:       /pub/packages/procmail/SmartList.tar.gz
  901. Xas compressed tar file:       /pub/packages/procmail/SmartList.tar.Z
  902. X
  903. XThere exists a dedicated mailinglist for SmartList users, send your
  904. Xsubscription requests to:
  905. X
  906. X        SmartList-request@informatik.rwth-aachen.de
  907. X
  908. XFor procmail related questions not specific to the SmartList package
  909. Xyou can also write to the procmail mailinglist, send your subscription
  910. Xrequests to:
  911. X
  912. X        procmail-request@informatik.rwth-aachen.de
  913. END_OF_FILE
  914.   if test 27452 -ne `wc -c <'procmail-3.03/SmartList/Manual'`; then
  915.     echo shar: \"'procmail-3.03/SmartList/Manual'\" unpacked with wrong size!
  916.   fi
  917.   # end of 'procmail-3.03/SmartList/Manual'
  918. fi
  919. if test -f 'procmail-3.03/SmartList/bin/arch_retrieve' -a "${1}" != "-c" ; then 
  920.   echo shar: Will not clobber existing file \"'procmail-3.03/SmartList/bin/arch_retrieve'\"
  921. else
  922.   echo shar: Extracting \"'procmail-3.03/SmartList/bin/arch_retrieve'\" \(7986 characters\)
  923.   sed "s/^X//" >'procmail-3.03/SmartList/bin/arch_retrieve' <<'END_OF_FILE'
  924. X#! /bin/sh
  925. X:
  926. X#$Id: arch_retrieve,v 1.38 1994/06/17 16:41:06 berg Exp $
  927. X
  928. Xtest=test        # /bin/test
  929. Xexpr=expr        # /bin/expr
  930. Xecho=echo        # /bin/echo
  931. Xls=ls            # /bin/ls
  932. Xrm=rm            # /bin/rm
  933. Xsed=sed            # /bin/sed
  934. Xcat=cat            # /bin/cat
  935. Xegrep=egrep        # /bin/egrep
  936. Xnice=nice        # /bin/nice
  937. Xmimesend=mimesend    # SedHomeDir/.bin/mimesend
  938. Xsleep=sleep        # /bin/sleep
  939. Xmimencode=mimencode    # /usr/local/bin/mimencode    # metamail MIME package
  940. Xformail=formail        # /usr/local/bin/formail
  941. X
  942. X$test -z "$listaddr" &&
  943. X $echo "Don't start this script directly, it is used in rc.request" && exit 64
  944. X
  945. Xbreakoff_search=512        # the maximum number of matches returned
  946. Xbreakoff_ls=512            # the maximum number of files listed with ls
  947. Xmaxfiles=16            # the maximum number of files returned (per
  948. X                # command), this can be overridden with
  949. X                # the "maxfiles nnn" command.  Setting it
  950. X                # to zero will disable checking.
  951. X
  952. Xwaitsleep=1            # number of seconds to sleep between sending
  953. X                # off files (to limit the load increase)
  954. X                # Don't set this limit too high, or your list
  955. X                # might become unavailable for extended periods
  956. X                # of time (if lots of files are being
  957. X                # requested).
  958. X                # If queueing is enabled, this sleep period
  959. X                # will not be used between putting files in
  960. X                # the queue.
  961. X
  962. Xtmprequest=tmp.request
  963. Xtmpfrom=tmp.from
  964. X
  965. Xarchivetxt=archive.txt        # the helpfile
  966. Xarchivedir=archive
  967. X
  968. Xstandalone=$1
  969. X
  970. Xfrom=`$echo "arch_retrieve:" \`$cat $tmpfrom\` requested`
  971. X$cat /dev/null >$tmpfrom
  972. X
  973. Xcase "$X_ENVELOPE_TO" in
  974. X  *$list-request*) wrongaddress="" ;;
  975. X  *) wrongaddress="WARNING:
  976. X    Please try to use '$listreq'
  977. X    the next time when issuing archive server requests." ;;
  978. Xesac
  979. X
  980. Xexport tmprequest archivedir wrongaddress    # for mimesend
  981. X
  982. X#
  983. X# Check if mimencode is available
  984. X#
  985. X
  986. Xcase `( exec 2>&1; exec $mimencode -)` in
  987. X   Usage:*) ;;
  988. X   *) mimencode="";;
  989. Xesac
  990. X
  991. X$formail -k -xSubject: |
  992. X $sed -e '/^[^a-zA-Z     ]/,$ d' -e 's/^[     ]*archive/ARCHIVE/' \
  993. X  -e 's/[     ]archive\/\/*/ /g' |
  994. X (  oldwrongaddress="$wrongaddress"
  995. X    wrongaddress="WARNING:
  996. X    Please make sure to start the Subject: of requests to the archive-
  997. X    server with the word archive.${wrongaddress:+
  998. X$wrongaddress}"
  999. X   sendhelp=""
  1000. X   ILLEGAL=""
  1001. X   while read line
  1002. X   do
  1003. X      set `cd $archivedir; $echo dummy $line`
  1004. X      shift
  1005. X      case "$1" in
  1006. X     archive|ARCHIVE|archive:|ARCHIVE:) shift
  1007. X        $test ! -z "$wrongaddress" && wrongaddress="$oldwrongaddress";;
  1008. X      esac
  1009. X      #
  1010. X      # Now call up the local extension file (if any)...
  1011. X      #
  1012. X      if test -f retrieve.local
  1013. X      then
  1014. X     . retrieve.local
  1015. X      elif test -f ../SedBinDir/retrieve.local
  1016. X      then
  1017. X     . ../SedBinDir/retrieve.local
  1018. X      elif test -f ../.bin/retrieve.local
  1019. X      then
  1020. X     . ../.bin/retrieve.local
  1021. X      fi
  1022. X      #
  1023. X      # The extension file should have used "set" to clear $1 and tell that
  1024. X      # it has processed the current command
  1025. X      #
  1026. X      case "$1" in
  1027. X     maxfiles|MAXFILES)
  1028. X        maxfiles=$2 ;;
  1029. X     send|sendme|get|getme|gimme|retrieve|mail|\
  1030. X     SEND|SENDME|GET|GETME|GIMME|RETRIEVE|MAIL)
  1031. X        shift
  1032. X        if $expr $maxfiles = 0 \| $maxfiles \>= $# >/dev/null
  1033. X        then
  1034. X           while $test $# != 0
  1035. X           do
  1036. X          case "$1" in
  1037. X             */../*|../*|*/..|..|[-/]*)
  1038. X            $echo $from ILLEGAL "$1" >>$tmpfrom
  1039. X            $test -z "$ILLEGAL" && ILLEGAL="$1";;
  1040. X             *) $echo $from "$1" >>$tmpfrom
  1041. X            if $test -z "$mimencode"
  1042. X            then
  1043. X              ( $formail -rt -I"Subject: archive retrieval: $1" \
  1044. X             -i"From: $listreq" -A"X-Loop: $listaddr" \
  1045. X             -i"Content-ID: <$1%$listreq>" \
  1046. X             -I"Precedence: bulk" -X "" <$tmprequest
  1047. X            $test ! -z "$wrongaddress" && $echo "$wrongaddress"
  1048. X            cd $archivedir
  1049. X            if $test -f "./$1"
  1050. X            then
  1051. X               case `$sed -e 1q <"./$1"` in
  1052. X                  Content-[Tt]ype:*) $cat "./$1" ;;
  1053. X                  *) $echo ""
  1054. X                 $echo "File: $1"
  1055. X                 $echo "BEGIN------------cut here-------------"
  1056. X                 $cat "./$1"
  1057. X                 $echo "END--------------cut here-------------"
  1058. X                 ;;
  1059. X               esac
  1060. X            else
  1061. X               $echo ""
  1062. X               if $test -d "./$1"
  1063. X               then
  1064. X                  $echo "$1 is a directory, use 'ls' instead."
  1065. X               else
  1066. X                  $echo "File $1 is currently not available."
  1067. X               fi
  1068. X            fi
  1069. X              ) | $SENDMAIL $sendmailOPT $sendmailOPTq -t
  1070. X            else
  1071. X               $nice $mimesend "$1"
  1072. X            fi
  1073. X              ;;
  1074. X          esac
  1075. X          shift
  1076. X           done
  1077. X        else
  1078. X           ( $formail -rt -I"Subject: archive retrieval: $line" \
  1079. X              -i"From: $listreq" -A"X-Loop: $listaddr" \
  1080. X              -I"Precedence: bulk" <$tmprequest
  1081. X         $test ! -z "$wrongaddress" && $echo "$wrongaddress"
  1082. X         $echo "Your request expanded to more than $maxfiles files."
  1083. X         $echo "If you want to receive all of them, use the"
  1084. X         $echo "'archive maxfiles $#' command first to raise the"
  1085. X         $echo "limit."
  1086. X           ) | $SENDMAIL $sendmailOPT -t
  1087. X        fi
  1088. X        $test -z "$sendmailOPTq" && $sleep $waitsleep ;;
  1089. X     ls|dir|directory|list|show|\
  1090. X     LS|DIR|DIRECTORY|LIST|SHOW)
  1091. X        shift
  1092. X        case "$*" in
  1093. X           *[/\ ]..[/\ ]*|..[/\ ]*|*[/\ ]..|..|[-/]*|*\ /*)
  1094. X          $echo $from ILLEGAL ls "$line" >>$tmpfrom
  1095. X          $test -z "$ILLEGAL" && ILLEGAL="$line";;
  1096. X           *)
  1097. X          $echo $from ls "$line" >>$tmpfrom
  1098. X           ( $formail -rt -I"Subject: archive retrieval: ls $1" \
  1099. X              -i"From: $listreq" -A"X-Loop: $listaddr" \
  1100. X              -i"Content-ID: <$line%$listreq>" \
  1101. X              -I"Precedence: bulk" <$tmprequest
  1102. X             $test ! -z "$wrongaddress" && $echo "$wrongaddress"
  1103. X             cd $archivedir
  1104. X             $echo "ls -l $line"
  1105. X             $echo "BEGIN---------------cut here------------------"
  1106. X             $ls -lL "$@" 2>&1 | $sed -e $breakoff_ls'a\
  1107. XTruncating after '$breakoff_ls' names...' -e ${breakoff_ls}q
  1108. X             $echo "END-----------------cut here------------------"
  1109. X           ) | $SENDMAIL $sendmailOPT -t
  1110. X          $sleep $waitsleep ;;
  1111. X        esac ;;
  1112. X     search|grep|egrep|fgrep|find|\
  1113. X     SEARCH|GREP|EGREP|FGREP|FIND)
  1114. X        iflag="-i"; nflag="-n"; flags=""; ready=no
  1115. X        while $test ! -z "$ready"
  1116. X        do
  1117. X           shift
  1118. X           case "$1" in
  1119. X          -i-) iflag="";;
  1120. X          -n-) nflag="";;
  1121. X          -[chlnv]) flags="$flags $1" ;;
  1122. X          -?) ;;                # skip unknown flags
  1123. X          *) ready="" ;;
  1124. X           esac
  1125. X        done
  1126. X        regxp="$1"
  1127. X        shift
  1128. X        case "$*" in
  1129. X           *[/\ ]..[/\ ]*|..[/\ ]*|*[/\ ]..|..|[-/]*|*\ /*)
  1130. X          $echo $from ILLEGAL "$line" >>$tmpfrom
  1131. X          $test -z "$ILLEGAL" && ILLEGAL="$line";;
  1132. X           *) $echo $from "$line" >>$tmpfrom
  1133. X        ( $formail -rt -I"Subject: archive retrieval: $line" \
  1134. X           -i"From: $listreq" -A"X-Loop: $listaddr" \
  1135. X           -I"Precedence: bulk" <$tmprequest
  1136. X          $test ! -z "$wrongaddress" && $echo "$wrongaddress"
  1137. X          cd $archivedir
  1138. X          $echo "$line"
  1139. X          $echo "BEGIN---------------cut here------------------"
  1140. X          $nice $egrep $nflag $iflag $flags -e $regxp $* \
  1141. X           </dev/null 2>&1 | $sed -e $breakoff_search'a\
  1142. XTruncating after '$breakoff_search' matches...' -e ${breakoff_search}q
  1143. X          $echo "END-----------------cut here------------------"
  1144. X        ) | $SENDMAIL $sendmailOPT -t
  1145. X          $sleep $waitsleep ;;
  1146. X        esac ;;
  1147. X     version|VERSION)
  1148. X        ( $formail -rt -I"Subject: archive retrieval: $line" \
  1149. X           -i"From: $listreq" -A"X-Loop: $listaddr" \
  1150. X           <$tmprequest
  1151. X          $test ! -z "$wrongaddress" && $echo "$wrongaddress"
  1152. X          flist -v 2>&1 | sed -e "/^User:/,$ d"
  1153. X          echo ""
  1154. X          procmail -v 2>&1
  1155. X        ) | $SENDMAIL $sendmailOPT -t
  1156. X           $sleep $waitsleep ;;
  1157. X     ""|\#*) ;;
  1158. X     *) $test -z "$sendhelp" && sendhelp="$1" ;;
  1159. X      esac
  1160. X   done
  1161. X   if $test ! -z "$sendhelp" -o ! -z "$ILLEGAL"
  1162. X   then
  1163. X       ( $formail -rt -I"Subject: archive retrieval info" \
  1164. X      -i"From: $listreq" -A"X-Loop: $listaddr" -I"Precedence: bulk" \
  1165. X      <$tmprequest
  1166. X     $test ! -z "$wrongaddress" && $echo "$wrongaddress"
  1167. X     case "X$sendhelp" in
  1168. X        X[Hh][Ee][Ll][Pp]|X[Ii][Nn][Ff][Oo]|X) ;;
  1169. X        *) $echo "Unknown command $sendhelp." ;;
  1170. X     esac
  1171. X     $test ! -z "$ILLEGAL" && $echo "Illegal filename $ILLEGAL requested."
  1172. X     $echo ""
  1173. X     $cat $archivetxt
  1174. X     if $test ! -z "$standalone"
  1175. X     then
  1176. X        $echo ""
  1177. X        $test -f help.txt && $cat help.txt
  1178. X        $test -f info.txt && $cat info.txt
  1179. X     fi
  1180. X       ) | $SENDMAIL $sendmailOPT -t
  1181. X   fi
  1182. X )
  1183. X
  1184. Xif $test ! -z "$archive_log"
  1185. Xthen
  1186. X  $cat $tmpfrom >>$archive_log
  1187. Xfi
  1188. X
  1189. Xif $test ! -z "$sendmailQflush"
  1190. Xthen
  1191. X  $sendmailQflush 2>/dev/null &
  1192. Xfi
  1193. END_OF_FILE
  1194.   if test 7986 -ne `wc -c <'procmail-3.03/SmartList/bin/arch_retrieve'`; then
  1195.     echo shar: \"'procmail-3.03/SmartList/bin/arch_retrieve'\" unpacked with wrong size!
  1196.   fi
  1197.   chmod +x 'procmail-3.03/SmartList/bin/arch_retrieve'
  1198.   # end of 'procmail-3.03/SmartList/bin/arch_retrieve'
  1199. fi
  1200. if test -f 'procmail-3.03/SmartList/bin/createlist' -a "${1}" != "-c" ; then 
  1201.   echo shar: Will not clobber existing file \"'procmail-3.03/SmartList/bin/createlist'\"
  1202. else
  1203.   echo shar: Extracting \"'procmail-3.03/SmartList/bin/createlist'\" \(4981 characters\)
  1204.   sed "s/^X//" >'procmail-3.03/SmartList/bin/createlist' <<'END_OF_FILE'
  1205. X#! /bin/sh
  1206. X: &&O='cd .' || exec /bin/sh "$0" $argv:q # we're in a csh, feed myself to sh
  1207. X$O || exec /bin/sh "$0" "$@"          # we're in a buggy zsh
  1208. X#########################################################################
  1209. X#    createlist    To create mailinglists                #
  1210. X#                                    #
  1211. X#    Created by S.R. van den Berg, The Netherlands            #
  1212. X#########################################################################
  1213. X#$Id: createlist,v 1.30 1994/06/07 17:05:28 berg Exp $
  1214. X
  1215. Xdefaults=.etc
  1216. X
  1217. Xtest=test        # /bin/test
  1218. Xln=ln            # /bin/ln
  1219. Xtouch=touch        # /bin/touch
  1220. Xmkdir=mkdir        # /bin/mkdir
  1221. Xrmdir=rmdir        # /bin/rmdir
  1222. Xsed=sed            # /bin/sed
  1223. Xpwd=pwd            # /bin/pwd
  1224. Xcat=cat            # /bin/cat
  1225. Xrm=rm            # /bin/rm
  1226. Xcp=cp            # /bin/cp
  1227. Xls=ls            # /bin/ls
  1228. Xchmod=chmod        # /bin/chmod
  1229. Xecho=echo        # /bin/echo
  1230. Xgrep=grep        # /bin/grep
  1231. Xlockfile=lockfile    # /usr/local/bin/lockfile
  1232. X
  1233. Xbin_procmail=SedBinDir/procmail
  1234. X
  1235. XDEVNULL=/dev/null
  1236. Xetcpasswd=/etc/passwd
  1237. XEX_USAGE=64
  1238. XEX_UNAVAILABLE=69
  1239. X
  1240. X( exec 2>$DEVNULL; lockfile )
  1241. Xif $test $? != 64
  1242. Xthen
  1243. X  $echo "Where is \"lockfile\"? It should be installed in your PATH" 1>&2
  1244. X  exit $EX_UNAVAILABLE
  1245. Xfi
  1246. X
  1247. Xif $test ! -d $defaults
  1248. Xthen
  1249. X  if $test -d list
  1250. X  then cd ./list
  1251. X  else cd ..
  1252. X     $test -d $defaults || cd ..
  1253. X  fi
  1254. Xfi
  1255. Xif $test ! -d $defaults
  1256. Xthen
  1257. X  $echo "createlist: You should be near the main list directory to do this" \
  1258. X   1>&2
  1259. X  exit $EX_USAGE
  1260. Xfi
  1261. X
  1262. Xif $test ! -f $bin_procmail
  1263. Xthen
  1264. X  OIFS="$IFS"
  1265. X  IFS=:"$IFS"
  1266. X  procmail=""
  1267. X
  1268. X  for a in $PATH
  1269. X  do $test -z "$procmail" -a -f "$a"/procmail && procmail=$a/procmail
  1270. X  done
  1271. X
  1272. X  IFS="$OIFS"
  1273. X  if $test -z "$procmail"
  1274. X  then
  1275. X     $echo "Where is \"procmail\"?" 1>&2
  1276. X     $echo "The symbolic link $bin_procmail must point to it" 1>&2
  1277. X     exit $EX_UNAVAILABLE
  1278. X  fi
  1279. X  $rm -f $bin_procmail
  1280. X  $ln -s $procmail $bin_procmail 2>$DEVNULL ||
  1281. X  $ln $procmail $bin_procmail 2>$DEVNULL ||
  1282. X   ( $cat >$bin_procmail <<HERE
  1283. X#! /bin/sh
  1284. X:
  1285. Xexec $procmail "\$@"
  1286. XHERE
  1287. X     $chmod 0755 $bin_procmail
  1288. X   )
  1289. Xfi
  1290. X
  1291. Xdomain=`$sed -n -e 's/^[^#]*domain= *\([^     ]*\).*$/\1/p' \
  1292. X $defaults/rc.init`
  1293. X
  1294. Xif $test .$domain = .INSERT.YOUR.MAIL.DOMAIN.HERE
  1295. Xthen
  1296. X  $echo "I refuse to do anything useful until you have edited the" 1>&2
  1297. X  $echo "rc.init file.    \`domain' must be set to some sane value." 1>&2
  1298. X  exit $EX_USAGE
  1299. Xfi
  1300. X
  1301. Xarchiveserver=no
  1302. X$test .-a = ".$1" && shift && archiveserver=yes
  1303. X
  1304. Xif $test $# != 1 -a $# != 2 -o ".$1" = .-h
  1305. Xthen
  1306. X  $echo "Usage: createlist [-a] listname [maintainer]" 1>&2
  1307. X  $echo "    -a    create an archive server instead of a list" 1>&2
  1308. X  exit $EX_USAGE
  1309. Xfi
  1310. X
  1311. Xlist="$1"
  1312. Xmaintainer="$2"
  1313. X
  1314. Xcase "$list" in
  1315. X  *[+*?]*) $echo "createlist: This listname contains magic characters" 1>&2
  1316. X     $echo "createlist: Support for this is planned, ask on the SmartList" 1>&2
  1317. X     $echo "createlist: mailinglist for more details" 1>&2
  1318. X     exit $EX_USAGE;;
  1319. X  "*[/     ]*") $echo "createlist: Suspicious listname specified" 1>&2
  1320. X     exit $EX_USAGE;;
  1321. X  *[@!]*) $echo "createlist: Specify listname without domain name appended" \
  1322. X     1>&2; exit $EX_USAGE;;
  1323. Xesac
  1324. X
  1325. Xif $grep -i -e "^$list:" $etcpasswd >$DEVNULL
  1326. Xthen
  1327. X  $echo "createlist: You can't pick a listname equal to an existing username" \
  1328. X   1>&2; exit $EX_USAGE
  1329. Xfi
  1330. X
  1331. Xumask `$sed -n -e 's/^[^#]*UMASK=[^0-9]*\([0-9]*\).*$/\1/p' $defaults/rc.init`
  1332. X
  1333. X$chmod go+x . .bin $defaults            # to preserve sanity
  1334. X
  1335. Xif $mkdir "$list" 2>$DEVNULL
  1336. Xthen
  1337. X  $chmod g+s "$list" 2>$DEVNULL        # to ensure the gid is inherited
  1338. Xelse $echo "createlist: \"$list\" already exists" 1>&2; exit $EX_USAGE
  1339. Xfi
  1340. Xcd "$list"
  1341. Xfor a in rc.submit rc.init rc.request help.txt subscribe.txt unsubscribe.txt \
  1342. X archive.txt reject
  1343. Xdo
  1344. X  $test -f ../$defaults/$a || $touch ../$defaults/$a    # make sure it exists
  1345. X  $ln ../$defaults/$a $a
  1346. Xdone
  1347. X
  1348. X$mkdir archive
  1349. X$mkdir archive/latest
  1350. X
  1351. X$sed -e "/^maintainer/ s/=/=    $maintainer/" <../$defaults/rc.custom \
  1352. X >rc.custom
  1353. X$echo "(Only addresses below this line can be automatically removed)" >>dist
  1354. X
  1355. X$chmod ugo+x .
  1356. X$chmod ugo+r dist
  1357. X
  1358. Xif $test $archiveserver = yes
  1359. Xthen
  1360. X  $rmdir archive/latest
  1361. X  $rm -f dist subscribe.txt unsubscribe.txt help.txt rc.submit rc.request
  1362. X  $cat >rc.submit <<HERE
  1363. XHOST=continue_with_rc.request
  1364. XHERE
  1365. X  $ln ../$defaults/rc.archive rc.request
  1366. Xelse
  1367. X  $ln dist accept
  1368. Xfi
  1369. X
  1370. Xcd ..
  1371. X
  1372. X$echo 1>&2
  1373. X$echo "Installed the following files (many hardlinked):" 1>&2
  1374. X$echo 1>&2
  1375. X$ls -ld $list $list/* $list/*/* 1>&2 2>$DEVNULL
  1376. X$echo 1>&2
  1377. X
  1378. Xlistuser=`$ls -ld $defaults | ( read a b user d; $echo $user )`
  1379. X
  1380. XTMPF=.uniq.$$
  1381. X
  1382. Xlistdir=$HOME
  1383. X
  1384. Xtrap "$rm -f $TMPF" 1 2 3 15
  1385. X
  1386. X$touch $TMPF
  1387. Xtest -f $HOME/$TMPF || listdir=`$pwd`
  1388. X
  1389. X$rm -f $TMPF
  1390. Xtrap 1 2 3 15
  1391. X
  1392. Xflist=$listdir/SedBinDir/flist
  1393. X
  1394. X$echo "Now make the following entries in your /usr/lib/aliases file:" 1>&2
  1395. X$echo \########################################################################
  1396. X$echo "$list: \"|exec $flist $list\""
  1397. X$echo "$list-request: \"|exec $flist $list-request\""
  1398. X$test $archiveserver = no && $echo "$list-dist: :include:$listdir/$list/dist"
  1399. X$echo \########################################################################
  1400. X$echo "And make sure to run newaliases afterwards." 1>&2
  1401. END_OF_FILE
  1402.   if test 4981 -ne `wc -c <'procmail-3.03/SmartList/bin/createlist'`; then
  1403.     echo shar: \"'procmail-3.03/SmartList/bin/createlist'\" unpacked with wrong size!
  1404.   fi
  1405.   chmod +x 'procmail-3.03/SmartList/bin/createlist'
  1406.   # end of 'procmail-3.03/SmartList/bin/createlist'
  1407. fi
  1408. if test -f 'procmail-3.03/SmartList/etc/unsubscribe.txt' -a "${1}" != "-c" ; then 
  1409.   echo shar: Will not clobber existing file \"'procmail-3.03/SmartList/etc/unsubscribe.txt'\"
  1410. else
  1411.   echo shar: Extracting \"'procmail-3.03/SmartList/etc/unsubscribe.txt'\" \(258 characters\)
  1412.   sed "s/^X//" >'procmail-3.03/SmartList/etc/unsubscribe.txt' <<'END_OF_FILE'
  1413. XIf this wasn't your intention or you are having problems getting yourself
  1414. Xunsubscribed, reply to this mail now (quoting it entirely (for diagnostic
  1415. Xpurposes), and of course adding any comments you see fit).
  1416. X
  1417. XTranscript of unsubscription request follows:
  1418. X-- 
  1419. END_OF_FILE
  1420.   if test 258 -ne `wc -c <'procmail-3.03/SmartList/etc/unsubscribe.txt'`; then
  1421.     echo shar: \"'procmail-3.03/SmartList/etc/unsubscribe.txt'\" unpacked with wrong size!
  1422.   fi
  1423.   # end of 'procmail-3.03/SmartList/etc/unsubscribe.txt'
  1424. fi
  1425. echo shar: End of archive 2 \(of 5\).
  1426. cp /dev/null ark2isdone
  1427. MISSING=""
  1428. for I in 1 2 3 4 5 ; do
  1429.     if test ! -f ark${I}isdone ; then
  1430.     MISSING="${MISSING} ${I}"
  1431.     fi
  1432. done
  1433. if test "${MISSING}" = "" ; then
  1434.     echo You have unpacked all 5 archives.
  1435.     rm -f ark[1-9]isdone
  1436. else
  1437.     echo You still must unpack the following archives:
  1438.     echo "        " ${MISSING}
  1439. fi
  1440. exit 0
  1441. exit 0 # Just in case...
  1442.