>>>>> "FW" == Frank Wong <fwong@tc.fluke.com> writes:
FW> 1. How do I zubscribe to this mailing list ? Please email me, as I'm
FW> not zubscribed yet, but just found the address on the net.
Well, it's a list about Majordomo development. That would point to a very
large probability that it's run by Majordomo software. So the evidence
would tend to suggest that requests would be answered at
majordomo@greatcircle.com. ^_^
FW> 2. I need to find out how to forward mailing list mail from majordomo
FW> to a newsgroup. We have a professional mailing list which we want to
FW> have ALL the posts made to it, forwarded to our newsgroup.
I recently saw the following Procmail/formail solution. I can't use it
because I don't run an NNTP server; I wish there was a lightweight one that
was better suited to this kind of thing. There was work on the nndb
backend to the Gnus newsreader that would serve personal mail via a small,
private, authenticated NNTP server but it didn't get very far.
Note that a more Majordomo-ish method of implementing the following would
be to stick a pipe to the script in the outgoing alias.
--
Jason L. Tibbitts III - tibbs@uh.edu - 713/743-8684 - 221SR1
System Manager: University of Houston High Performance Computing Center
1994 PC800 "Kuroneko" DoD# 1723
------- Start of forwarded message -------
To: "Jose Enrique Diaz Jolly (LCI)" <ediaz@sunulsa.ulsa.mx>
Cc: Smartlist Mailing List <SmartList@Informatik.RWTH-Aachen.DE>
Subject: Smartlist to Usenet gateway (was: Cucipop)
References: <Pine.SOL.3.94.960815233515.2554A-100000@sunulsa.ulsa.mx>
From: Per Abrahamsen <abraham@dina.kvl.dk>
Date: 08 Sep 1996 16:07:00 +0200
Message-ID: <rj7mq5hzi3.fsf@kolmogorov.dina.kvl.dk>
"Jose Enrique Diaz Jolly (LCI)" <ediaz@sunulsa.ulsa.mx> writes:
> One more thing, does any body know how can I get a gateway between
> SmartList and a news server,?
Here is what we did. If anyone can see problems or suggest
improvements to this, please let me know.
----------------------------------------
Create the moderated group `group.foo' in the news server, with the
mailing list `foo@your.host' as moderator.
Add `foo-news' as subscriber to the `foo' list.
Add
foo-news: "|exec /pack/dnews/mail2news group.foo"
to `/etc/aliases'
The mail2news script looks like this:
#! /bin/sh
NNTPSERVER=news.host
export NNTPSERVER
INEWS=/pack/dnews/inews
FORMAIL=/pack/procmail/bin/formail
NEWSGROUPS=$1
( $FORMAIL -I "Newsgroups: $NEWSGROUPS" \
-a "Approved: slist@your.host" \
-R "From " "X-Mail-From: " \
-R "Received:" "X-Mail-Received:" \
-R "Path:" "X-Mail-Path:" \
-I "Path: slist" \
| $INEWS ) || exit 42
exit 0
We use the minimal inews that is distributed together with lynx.
------- End of forwarded message -------
References:
|
|