source: networking/mailnews/fetchmail.xml@ 05624b2

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 05624b2 was 05624b2, checked in by Pierre Labastie <pieere@…>, 10 years ago

A few more tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@12790 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!--<!ENTITY fetchmail-download-http "&sourceforge-repo;/fetchmail.berlios/fetchmail-&fetchmail-version;.tar.xz"> Not up to date -->
8 <!ENTITY fetchmail-download-http " ">
9 <!ENTITY fetchmail-download-ftp "ftp://ftp.at.gnucash.org/pub/infosys/mail/fetchmail/fetchmail-&fetchmail-version;.tar.xz">
10 <!ENTITY fetchmail-md5sum "61b66faad044afa26e142bb1791aa2b3">
11 <!ENTITY fetchmail-size "1.2 MB">
12 <!ENTITY fetchmail-buildsize "14 MB">
13 <!ENTITY fetchmail-time "0.1 SBU">
14]>
15
16<sect1 id="fetchmail" xreflabel="fetchmail-&fetchmail-version;">
17 <?dbhtml filename="fetchmail.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Fetchmail-&fetchmail-version;</title>
25
26 <indexterm zone="fetchmail">
27 <primary sortas="a-Fetchmail">Fetchmail</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Fetchmail</title>
32
33 <para>The <application>Fetchmail</application> package contains a mail
34 retrieval program. It retrieves mail from remote mail servers and
35 forwards it to the local (client) machine's delivery system, so it can then be
36 read by normal mail user agents.</para>
37
38 &lfs75_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing='compact'>
42 <listitem>
43 <para>Download (HTTP): <ulink url="&fetchmail-download-http;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download (FTP): <ulink url="&fetchmail-download-ftp;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download MD5 sum: &fetchmail-md5sum;</para>
50 </listitem>
51 <listitem>
52 <para>Download size: &fetchmail-size;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated disk space required: &fetchmail-buildsize;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated build time: &fetchmail-time;</para>
59 </listitem>
60 </itemizedlist>
61
62 <bridgehead renderas="sect3">Fetchmail Dependencies</bridgehead>
63
64 <bridgehead renderas="sect4">Required</bridgehead>
65 <para role="required">
66 <xref linkend="openssl"/> and
67 a local MDA (<xref linkend="procmail"/>)
68 </para>
69
70 <bridgehead renderas="sect4">Optional</bridgehead>
71 <para role="optional">
72 <xref linkend="python2"/> and
73 <xref linkend="tk"/>
74 </para>
75
76 <para condition="html" role="usernotes">User Notes:
77 <ulink url="&blfs-wiki;/fetchmail"/></para>
78
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of Fetchmail</title>
83
84 <para>Install <application>Fetchmail</application> by running the following
85 commands:</para>
86
87<screen><userinput>./configure --prefix=/usr --with-ssl --enable-fallback=procmail &amp;&amp;
88make</userinput></screen>
89
90 <para>This package does not come with a test suite.</para>
91
92 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
93
94<screen role='root'><userinput>make install</userinput></screen>
95
96 </sect2>
97
98 <sect2 role="commands">
99 <title>Command Explanations</title>
100
101 <para><parameter>--with-ssl</parameter>: This enables SSL support, so that
102 you can handle connections to secure POP3 and IMAP servers.</para>
103
104 <para><parameter>--enable-fallback=procmail</parameter>: This tells
105 <application>Fetchmail</application> to hand incoming mail to
106 <application>Procmail</application> for delivery, if the port 25 mail server is
107 not present or not responding.</para>
108
109 </sect2>
110
111 <sect2 role="configuration">
112 <title>Configuring Fetchmail</title>
113
114 <sect3 id="fetchmail-config">
115 <title>Config Files</title>
116
117 <para><filename>~/.fetchmailrc</filename></para>
118
119 <indexterm zone="fetchmail fetchmail-config">
120 <primary sortas="e-AA.fetchmailrc">~/.fetchmailrc</primary>
121 </indexterm>
122
123 </sect3>
124
125 <sect3>
126 <title>Configuration Information</title>
127
128<screen><userinput>cat &gt; ~/.fetchmailrc &lt;&lt; "EOF"
129<literal>set logfile /var/log/fetchmail.log
130set no bouncemail
131set postmaster root
132
133poll SERVERNAME :
134 user <replaceable>&lt;username&gt;</replaceable> pass <replaceable>&lt;password&gt;</replaceable>;
135 mda "/usr/bin/procmail -f %F -d %T";</literal>
136EOF
137
138chmod -v 0600 ~/.fetchmailrc</userinput></screen>
139
140 <para>This is an example configuration that should suffice for most people.
141 You can add as many users and servers as you need using the same syntax.</para>
142
143 <para><command>man fetchmail</command>: Look for the section near the
144 bottom named <emphasis>CONFIGURATION EXAMPLES</emphasis>. It gives some
145 quick examples. There are countless other configuration options once you
146 get used to it.</para>
147
148 </sect3>
149
150 </sect2>
151
152 <sect2 role="content">
153 <title>Contents</title>
154
155 <segmentedlist>
156 <segtitle>Installed Programs</segtitle>
157 <segtitle>Installed Libraries</segtitle>
158 <segtitle>Installed Directories</segtitle>
159
160 <seglistitem>
161 <seg>fetchmail and fetchmailconf</seg>
162 <seg>None</seg>
163 <seg>None</seg>
164 </seglistitem>
165 </segmentedlist>
166
167 <variablelist>
168 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
169 <?dbfo list-presentation="list"?>
170 <?dbhtml list-presentation="table"?>
171
172 <varlistentry id="fetchmail-prog">
173 <term><command>fetchmail</command></term>
174 <listitem>
175 <para>when executed as a user, this will source
176 <filename>~/.fetchmailrc</filename> and download the appropriate mail.
177 </para>
178 <indexterm zone="fetchmail fetchmail-prog">
179 <primary sortas="b-fetchmail">fetchmail</primary>
180 </indexterm>
181 </listitem>
182 </varlistentry>
183
184 <varlistentry id="fetchmailconf">
185 <term><command>fetchmailconf</command></term>
186 <listitem>
187 <para>it will assist you in setting up and editing a
188 <filename>~/.fetchmailrc</filename> configuration file, by using
189 a <application>Tk</application> GUI interface. It requires
190 <application>Python</application> and it must have the Tkinker module
191 available.</para>
192 <indexterm zone="fetchmail fetchmailconf">
193 <primary sortas="b-fetchmailconf">fetchmailconf</primary>
194 </indexterm>
195 </listitem>
196 </varlistentry>
197
198 </variablelist>
199
200 </sect2>
201
202</sect1>
Note: See TracBrowser for help on using the repository browser.