lowercase_filename in [ImportEchoMail]
This commit is contained in:
parent
4533cc7e23
commit
3ab60bfb0e
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue