pure-ftpd-wrapper does not parse all config files
Bug #608144 reported by
Thorsten Kunz
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
pure-ftpd (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
Binary package hint: pure-ftpd-common
The script failed to read these two configuration files: IPV4Only, IPV6Only
This is due to a regular expression that only permits config files with characters but no digits.
Fix: change line 154 in pure-ftpd-wrapper from
next unless /^[A-Za-z]+$/;
to
next unless /^[A-Za-z0-9]+$/;
to allow digits in config file names.
To post a comment you must log in.