86 lines
6.0 KiB
INI
86 lines
6.0 KiB
INI
####################################################################################################
|
|
# Digital Data Configuration File (Template Date: 30.07.2016) #
|
|
# UTF-8 Coding required! #
|
|
# incl. FailSafe functions that are active when information is missing. #
|
|
####################################################################################################
|
|
|
|
#==================================================================================================#
|
|
########################################## General Setup ###########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Path in which the log files will be stored. #
|
|
# Example: E:\LogFiles\<ScriptName> #
|
|
# FailSafe Setting is: <ScriptPath>\Logs #
|
|
####################################################################################################
|
|
LogPath =
|
|
|
|
####################################################################################################
|
|
# Numerical value how long (in days) log files will be kept. ValidateRange is 0 - 1000 #
|
|
# Setting the Value to 0 disables this Function. #
|
|
# FailSafe Setting is: 60 #
|
|
####################################################################################################
|
|
LogFileKeepTime = 30
|
|
|
|
#==================================================================================================#
|
|
########################################## Profile Setup ###########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Path in which the UserMappingFile file is stored. #
|
|
# Example: D:\ScriptFiles\Merge-MailStoreUserArchives\Benutzer-Mapping.csv #
|
|
####################################################################################################
|
|
UserMappingFile = D:\ScriptFiles\Merge-MailStoreUserArchives\Benutzer-Mapping1l.csv
|
|
|
|
####################################################################################################
|
|
# Determine the data Seperator reperator in the UserMappingFile. #
|
|
# The ";" needs to be escaped/masked by a \ . #
|
|
# Example: \; #
|
|
####################################################################################################
|
|
UserMappingFileSeperator =\;
|
|
|
|
####################################################################################################
|
|
# Determine the table column where the old Username is stored. #
|
|
# Example: Nutzername_Alt #
|
|
####################################################################################################
|
|
UserMappingFileColumnOldName = Nutzername_Alt
|
|
|
|
####################################################################################################
|
|
# Determine the table column where the new Username is stored. #
|
|
# Example: Nutzername_Neu #
|
|
####################################################################################################
|
|
UserMappingFileColumnNewName = Nutzername_Neu
|
|
|
|
#==================================================================================================#
|
|
######################################## MailStore settings ########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Set the ServerName to connect with (MailStore Server). #
|
|
# Example: localhost #
|
|
####################################################################################################
|
|
MailStoreServer = localhost
|
|
|
|
####################################################################################################
|
|
# Set the ServerPort to connect with (MailStore Server). #
|
|
# Example: 8463 #
|
|
####################################################################################################
|
|
MailStoreServerPort = 8463
|
|
|
|
####################################################################################################
|
|
# Set the UserName for the MailStore Admin Account. #
|
|
# Example: admin #
|
|
####################################################################################################
|
|
MailStoreAdminUserName = AdminMailStore
|
|
|
|
####################################################################################################
|
|
# Set the Password for the MailStore Admin Account. #
|
|
# Example: admin #
|
|
####################################################################################################
|
|
MailStoreAdminUserPassword = Z$Mstor1Z$Mstor1
|
|
|
|
|
|
|
|
|
|
|