diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-02-07 17:03:07 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-02-07 17:03:07 +0000 |
commit | 737b89c60586b61a6fd0fda5f0de05bc6ba3bf6a (patch) | |
tree | c9e1fe80c2b2ef1a484277f96bf80b17296d45ae /fetchmailconf | |
parent | 0f91f0a71f073b5689ace6504cc62162e234ac79 (diff) | |
download | fetchmail-737b89c60586b61a6fd0fda5f0de05bc6ba3bf6a.tar.gz fetchmail-737b89c60586b61a6fd0fda5f0de05bc6ba3bf6a.tar.bz2 fetchmail-737b89c60586b61a6fd0fda5f0de05bc6ba3bf6a.zip |
FreeBSD support.
svn path=/trunk/; revision=2376
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fetchmailconf b/fetchmailconf index 846ed1d7..576774f9 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -832,8 +832,8 @@ fetchmail from triggering an expensive dial-out if the interface is not already active. The `interface' and `monitor' options are available -only for Linux systems. See the fetchmail manual page -for details on these. +only for Linux and freeBSD systems. See the fetchmail +manual page for details on these. The `netsec' option will be configurable only if fetchmail was compiled with IPV6 support. If you need to use it, @@ -1006,16 +1006,16 @@ class ServerEdit(Frame, MyWidget): self.server.localdomains, None, None, mdropwin, multihelp) mdropwin.pack(fill=X) - if os_type == 'linux' or 'netsec' in feature_options: + if os_type == 'linux' or os_type == 'freebsd' or 'netsec' in feature_options: secwin = Frame(rightwin, relief=RAISED, bd=5) Label(secwin, text="Security").pack(side=TOP) # Don't actually let users set this. KPOP sets it implicitly # ButtonBar(secwin, 'Authorization mode:', # self.auth, authlist, 1, None).pack(side=TOP) - if os_type == 'linux' or 'interface' in dictmembers: + if os_type == 'linux' or os_type == 'freebsd' or 'interface' in dictmembers: LabeledEntry(secwin, 'IP range to check before poll:', self.interface, leftwidth).pack(side=TOP, fill=X) - if os_type == 'linux' or 'monitor' in dictmembers: + if os_type == 'linux' or os_type == 'freebsd' or 'monitor' in dictmembers: LabeledEntry(secwin, 'Interface to monitor:', self.monitor, leftwidth).pack(side=TOP, fill=X) if 'netsec' in feature_options or 'netsec' in dictmembers: |