Lines 1-16
Link Here
|
1 |
hotwayd and hotsmtpd need to be run from inetd (or xinetd). |
1 |
******************** |
|
|
2 |
hotwayd should normally be run from inetd (or xinetd). |
2 |
To use the standard ports for pop3 and smtp, add lines |
3 |
To use the standard ports for pop3 and smtp, add lines |
3 |
like the following to /etc/inetd.conf: |
4 |
like the following to /etc/inetd.conf: |
4 |
|
5 |
|
5 |
pop3 stream tcp nowait root /usr/local/sbin/hotwayd hotwayd |
6 |
pop3 stream tcp nowait root /usr/local/sbin/hotwayd hotwayd |
6 |
smtp stream tcp nowait root /usr/local/sbin/hotsmtpd hotsmtpd |
|
|
7 |
|
7 |
|
8 |
Alternatively, you may specify arbitrary ports for hotwayd and hotsmtpd. |
8 |
Alternatively, you may specify an arbitrary port for hotwayd. |
9 |
Define them in /etc/services, and then add lines like thke following to |
9 |
Define them in /etc/services, and then add a line like the following to |
10 |
/etc/inetd.conf: |
10 |
/etc/inetd.conf: |
11 |
|
11 |
|
12 |
hotwayd stream tcp nowait root /usr/local/sbin/hotwayd hotwayd |
12 |
hotwayd stream tcp nowait root /usr/local/sbin/hotwayd hotwayd |
13 |
hotsmtpd stream tcp nowait root /usr/local/sbin/hotsmtpd hotsmtpd |
|
|
14 |
|
13 |
|
15 |
After making your changes, restart inetd. e.g.: |
14 |
After making your changes, restart inetd. e.g.: |
16 |
|
15 |
|
Lines 21-28
Link Here
|
21 |
address (e.g. example@hotmail.com), and the password is your your |
20 |
address (e.g. example@hotmail.com), and the password is your your |
22 |
password for hotmail (or whichever service you use). |
21 |
password for hotmail (or whichever service you use). |
23 |
|
22 |
|
24 |
Similarly, you can use any mail client that supports SASL authentication |
23 |
For more detailed information see hotwayd(1) and the port |
25 |
for SMTP to send e-mail (through hotmail, etc). |
|
|
26 |
|
27 |
For more detailed information see hotwayd(1), hotsmtpd(1), and the port |
28 |
documentation in ${PREFIX}/share/doc/hotwayd. |
24 |
documentation in ${PREFIX}/share/doc/hotwayd. |
|
|
25 |
******************** |