s/myISP.com/example.net/

This commit is contained in:
Ceri Davies 2002-05-05 14:26:45 +00:00
parent d5734f8a6d
commit 176af9eea5
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=12966

View file

@ -6624,12 +6624,12 @@ parse returns: $# uucp-dom $@ <replaceable>your.uucp.relay</replaceab
use a dialup PPP connection to the Internet, you will
probably be given a mailbox on your ISPs mail server. Lets
assume your ISPs domain is <hostid
role="domainname">myISP.com</hostid>, and that your user
role="domainname">example.net</hostid>, and that your user
name is <username>user</username>. Lets also assume you
have called your machine <hostid
role="fqdn">bsd.home</hostid> and that your ISP has told
you that you may use <hostid
role="fqdn">relay.myISP.com</hostid> as a mail
role="fqdn">relay.example.net</hostid> as a mail
relay.</para>
<para>In order to retrieve mail from your mailbox, you will
@ -6662,7 +6662,7 @@ parse returns: $# uucp-dom $@ <replaceable>your.uucp.relay</replaceab
role="fqdn">bsd.home</hostid>, create a
<filename>.fetchmailrc</filename> file:</para>
<programlisting>poll myISP.com protocol pop3 fetchall pass MySecret</programlisting>
<programlisting>poll example.net protocol pop3 fetchall pass MySecret</programlisting>
<para>This file should not be readable by anyone except
<username>user</username> as it contains the password
@ -6671,10 +6671,10 @@ parse returns: $# uucp-dom $@ <replaceable>your.uucp.relay</replaceab
<para>In order to send mail with the correct
<literal>from:</literal> header, you must tell
<application>sendmail</application> to use
<literal>user@myISP.com</literal> rather than
<literal>user@example.net</literal> rather than
<literal>user@bsd.home</literal>. You may also wish to
tell <application>sendmail</application> to send all mail
via <hostid role="fqdn">relay.myISP.com</hostid>, allowing
via <hostid role="fqdn">relay.example.net</hostid>, allowing
quicker mail transmission.</para>
<para>The following <filename>.mc</filename> file should
@ -6687,12 +6687,12 @@ MAILER(local)dnl
MAILER(smtp)dnl
Cwlocalhost
Cwbsd.home
MASQUERADE_AS(`myISP.com')dnl
MASQUERADE_AS(`example.net')dnl
FEATURE(allmasquerade)dnl
FEATURE(masquerade_envelope)dnl
FEATURE(nocanonify)dnl
FEATURE(nodns)dnl
define(`SMART_HOST', `relay.myISP.com')
define(`SMART_HOST', `relay.example.net')
Dmbsd.home
define(`confDOMAIN_NAME',`bsd.home')dnl
define(`confDELIVERY_MODE',`deferred')dnl</programlisting>