home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / mail / Pop3d-RnA.README < prev    next >
Encoding:
Text File  |  1995-05-05  |  1.8 KB  |  43 lines

  1. Pop3d installation
  2.  
  3. This installs pop3d on your NEXTSTEP system. This version of POP3 was taken from the Linux distribution. It runs fine after some small mods (/var -> /private).
  4.  
  5. Here's how:
  6.  
  7. 1.    Unpack the archive.
  8. 2.    In the directory pop3d, run 
  9.             make just-install
  10.     as root. 
  11.     All NEXTSTEP systems, even without developer have make.
  12.  
  13. 3.    Add the following line to /etc/services (this is just to be sure, 3.a is more important):
  14.  
  15. pop3        110/tcp        postoffice
  16.  
  17. 3.a    Startup NetinfoManager
  18.     Select the services directory
  19.     Select pop
  20.     Choose duplicate (Cmd-d)
  21.     Open (double click) Copy_of_pop
  22.     Change the name value to pop3
  23.     Change the port to 110
  24.  
  25. 4.    Add the following line to /etc/inetd.conf
  26.  
  27. pop3    stream    tcp    nowait    root    /etc/pop3d    pop3d
  28.  
  29. 5.    Restart the inetd daemon:
  30.         First find out the process id (PID) of inetd:
  31.             su@mr_ed 70) ps ax | grep inetd
  32.               132 ?  SW    0:00  (inetd)
  33.              4336 p1 S     0:00 grep inetd
  34.         The first line is the commando you use in a shell (as root). This gives the processes that have 'inetd' in their name. The second is obviously the one that we used to look for it. The first is the real inetd program. We restart it by sending a HANGUP signal to it:
  35.             su@mr_ed 72) kill -HUP 132
  36.  
  37. That is all there is to it. From now on, valid users on your NEXTSTEP system can empty their mailboxes in /private/spool/mail. Note: the POP3 server should be run on the system that holds the mail spooling area (normally mailhost) if you have more than one machine.
  38.  
  39. Note of warning: NeXTmail also empties the mailbox in /private/spool/mail. So, if your users use both NeXTmail and some POP mail client they are in for some hassle with their mail messages. There are several ways around this problem, but that you can find out for yourself or someone else can do an easy-install package.
  40.  
  41. Gerben (Gerben_Wierda@RnA.NL)
  42.  
  43.