mail on the Spring and mailing lists
Topic 15 · 11 responses · archived october 2000
~terry
Sun, Dec 29, 1996 (20:18)
seed
Mail on the Spring. We have three current mailservers for
popmail and smtp mail:
access.spring.com
barton.spring.com
www.spring.com
~terry
Sun, Dec 29, 1996 (20:21)
#1
If you have an account on the Spring you
need to set up a .forward file in your user
directory.
If you haven't done it, set up a .forward file if you don't pick up your
mail here. And here's how:
cat > .forward <----- notice the period before forward
yourname@spring.com <----- the email address to forward to
^D <----- press CONTROL and D to end the file
now exit the account and send a test message to your account, then
check your own email address for that message.
A better form is this (I'm using the example of my account):
My .forward file:
\terry,terry@www.spring.com
For example, Amy's email is amylou@bluemarble.net and hers would be:
\amy,amylous@bluemarble.net
~terry
Tue, Jan 7, 1997 (07:37)
#2
* very important *
If you notice mail is down on the Spring and you have root
access, *please* run the following command to restart it.
It works, I just did it.
/usr/sbin/sendmail -bd -q30m
This starts the sendmail daemon. This command is included
in the system boot scripts, I believe, but it's too drastic
to restart the whole system just to get mail going.
Does anyone know how to set up mail aliases? Look at the
aliases file. I like to set up a couple for our two
email groups in the austen conference.
Glad mail is running. I didn't find out about out till
12 hours after it went down on spring.com. Amy you have
an account as 'amy' on spring.com and we need to get the
others set up there also.
Who will volunteer to set up these accounts (as Amy is
busy the next few days).
~mrobens
Tue, Jan 7, 1997 (08:34)
#3
Terry,
Do I use the newalias program for this? I'll be glad to do it.
~terry
Tue, Jan 7, 1997 (10:05)
#4
I'm not sure. Read the man page on alias if there is one.
We found someone to help with realaudio. Can you work with him?
~mrobens
Thu, Jan 9, 1997 (12:26)
#5
~mrobens
Thu, Jan 9, 1997 (12:28)
#6
I have set up two aliases: austen_com and austen_unix. They contain the email addresses of the two Austen Conference groups. They have not been tested.
~terry
Mon, Jan 13, 1997 (05:24)
#7
Have you tested them yet?
~mrobens
Mon, Jan 13, 1997 (07:10)
#8
Have you tested them yet?
Yes and they don't work. When I have a minute, I'll try to figure out why.
~terry
Mon, Jan 13, 1997 (16:24)
#9
Tahnks!!! (I can't get to a machine with speakers here at work).
~mrobens
Wed, Jan 15, 1997 (08:10)
#10
OK. I've created two mail ailiases: austen_com and austen_unix. These expeand to the mail lists on Amy's comittee page. These work with ELM but not with the mail command. Which is exactly what the man page on newalias said, if I'd been paying attention.
What next?
~terry
Wed, Jan 29, 1997 (06:08)
#11
We now have access to our mailing list thanks to Dave.
Roughly a third of the email addresses are false because users didn't replace
the default they were assigned with their real email addresses. This is a
problem that Dave is addressing in the next release of Yapp.
From the yapp conference yesterday:
Topic 44 of 45: 'Austen conference at Spring'
Response 3 of 4: Henry (churchyh@ccwf.cc.utexas.edu) Tue, Jan 28, 1997
(11:39) 5 lines
A lot of the e-mail addresses for web users at our site are bogus,
because the default choice that's presented to them is the
concatenation of:
The user name they're choosing to be known as here + "@"
+ the result of running reverse DNS lookup on the IP address
they're coming in from
There probably isn't any better way to construct such a default,
but unfortunately an e-mail address constructed according to this
procedure will be bogus in many cases, and a lot of people don't
bother to edit the default...
So the result is that there's a lot of bogus pseudo-addresses of
the general type
"MickJagger@dial-in-ppp42-9.custmax.ms.uu.net", or
whatever...
Response 4 of 4: Dave Thaler (thaler@armidale.ann-arbor.mi.us) Tue, Jan 28,
1997 (19:20) 18 lines
This is the purpose of the "Participants" button which should be at
the top of the page of the list of topics in the conference. By default,
this shows the login, last time on, and full name (but not email
address) of the participant. A host can change this by putting a command in
the conference rc file which redefines the "partmsg" variable to look
like anything you want. For example,
def partmsg '%10v %o %20u %{email}'
will show the login, last time on, full name, and email address.
If you just want a list of email addresses of conference members
yourself, you could generate this in Unix and save it to a file from in Yapp
with:
def partmsg '%{email}'
participants > filename
-Dave