aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2020-10-05 19:09:17 +0000
committerMatthias Andree <mandree@FreeBSD.org>2020-10-05 19:09:17 +0000
commita53a4d675112505a02c02695400ce0cef16d7c19 (patch)
treee42816725d62495f5f5934664c25fc03e99b9dfb /UPDATING
parentddea73b0e29631b1d04ec860cda169e6546b2c31 (diff)
downloadports-a53a4d675112505a02c02695400ce0cef16d7c19.tar.gz
ports-a53a4d675112505a02c02695400ce0cef16d7c19.zip
mail/fetchmail: avoid rc.conf overriding daemon interval, many other fixes
Authors: CH = Corey Halpin, MA = Matthias Andree - fetchmail's rc script now queries the daemon interval from the configuration, and falls back to the rc.conf value if given. [CH] - Similarly, the logging facility will be taken from the configuration [MA] - Add documentation to the rcfile's header comments. [MA] - Drop support for fetchmail_home_prefix in rc.conf, and query the respective users' home directories with getent instead. [MA] - In the rc scripts, redirect input from /dev/null so it will not ask for passwords. [MA] - Add support for the typical 12.1 rc.conf ${name}_... keywords. [MA] - Make script execution easier to follow by simplifying if...else logic. [CH] - Fix rcscript's exit code to be 1 if one of the per-user calls fails. [CH] - Add relevant notes to UPDATING. [MA] PR: 249860 Submitted by: Corey Halpin (maintainer) Reported by: Chris James (on fetchmail-users mailing list) Approved by: Corey Halpin (maintainer)
Notes
Notes: svn path=/head/; revision=551537
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING16
1 files changed, 16 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 3ff8b14e7b71..91cc99696970 100644
--- a/UPDATING
+++ b/UPDATING
@@ -6,6 +6,22 @@ You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
20201002:
+ AFFECTS: users of mail/fetchmail beginning with 6.4.12_1
+ AUTHOR: mandree@FreeBSD.org
+
+ Note that if you are using fetchmail in a multi-user setup, i. e. with the
+ fetchmail_users (mind the -s!) variable set, the $fetchmail_home_prefix +
+ user second-guess work has been replaced by a real lookup of the user's home
+ directory. In the majority of configurations, this should not make a
+ difference, in some setups, it may open up some flexibility.
+
+ The fetchmail_home_prefix variable is ignored from 6.4.12_1 onwards.
+
+ Also, the rc script redirects its input from /dev/null so that passwords
+ will not be interactively queried from an rcfile. Put passwords into
+ the [.]fetchmailrc or into a .netrc file.
+
+20201002:
AFFECTS: users of sysutils/modules
AUTHOR: 0mp@FreeBSD.org