Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 387009 | Differences between
and this patch

Collapse All | Expand All

(-)/etc/conf.d/fetchmail (+43 lines)
Lines 8-10 Link Here
8
8
9
# Directory where the pid file is kept
9
# Directory where the pid file is kept
10
pid_dir="/var/run/fetchmail"
10
pid_dir="/var/run/fetchmail"
11
12
# Fetchmail configuration
13
14
# If fetchmail_config is defined, the initscript will use the contents of fetchmail_config, and ignore the
15
# fetchmail_rc variable
16
#
17
# WARNING: Be careful of quotes! If there are no single quotes in the password, you're recommended to use
18
#          single quotes as the delimiter
19
#
20
# Default:
21
#fetchmail_config=''
22
23
# Example (will be ignored by the initscript):
24
fetchmail_config_example='
25
	set postmaster "admin@example.com"
26
	poll "mail.example.com"
27
		envelope "Envelope-to"
28
		proto IMAP
29
		timeout 300
30
31
		user "catchall" there
32
		password "OpenSesame"
33
		is * here
34
		ssl
35
		fetchall
36
		idle
37
'
38
39
# If fetchmail_rc is not empty, while fetchmail_config is empty,
40
# the initscript will use the file referred in the fetchmail_rc variable.
41
#
42
# NOTE: 1. The full path must be specified!
43
#       2. If the file does not exist, initscript will terminate with error!
44
# Default:
45
#fetchmail_rc=""
46
47
# If neither fetchmail_config nor fetchmail_rc are set, then the initscript
48
# will first try to find the file /etc/${RC_SVCNAME}.rc
49
# Failing that, it will 'fallback' to the older naming system of
50
# /etc/${RC_SVCNAME}rc (i.e., without the dot)
51
#
52
# Failure in finding either version of the rc-file, initscript terminates
53
# with error.

Return to bug 387009