lowercase_filename in [ImportEchoMail]

This commit is contained in:
mysticbbs 2013-09-22 21:58:15 -04:00
parent 4533cc7e23
commit 3ab60bfb0e
3 changed files with 12 additions and 0 deletions

View File

@ -431,6 +431,10 @@
auto_create = true
; Convert filenames to lowercased 1=true
lowercase_filename = 1
; base format 0=jam 1=squish
base_format = 0

View File

@ -213,6 +213,9 @@ Var
Break;
End;
If INI.ReadString(Header_ECHOIMPORT, 'lowercase_filename', '1') = '1' Then
MBase.FileName := strLower(MBase.FileName);
If INI.ReadString(Header_ECHOIMPORT, 'use_autosig', '1') = '1' Then
MBase.Flags := MBase.Flags OR MBAutoSigs;

View File

@ -3834,4 +3834,9 @@
+ Added the ability to turn off showing the user's QWK packet in FTP
directory listings (Internet Servers > FTP)
+ The autocreating message base while Importing Echomail can now have a
lowercase_filename = 1 value to convert all msg base filenames to lower
cased. This was previously only available in FIDOBONE/FIDONET.NA
importing but it works under [ImportEchoMail] now too
<ALPHA 38 RELEASED>