Advertisement
Guest User

snapraid ini realjim

a guest
Aug 8th, 2018
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. ; This file uses semicolon for comment lines. Blank lines are okay.
  2. ; Everything else will be taken as a config option.
  3. ; The equal sign is not valid in variables.
  4. ; Do not quote strings.
  5. ; Version: 3.3 (2016/06/16)
  6.  
  7. ; UTF8 Console
  8. UTF8Console=1
  9.  
  10. ; **** E-Mail Variables ****
  11. EmailEnable=1
  12. EmailTo=s(removed for privacy)@gmail.com
  13. EmailFrom=s@(removed for privacy).net
  14. ; What to put at the start of your email subject line
  15. SubjectPrefix=[SERVER] SnapRAID -
  16. ; Default body if no content is collected into $EMAIL_BODY
  17. Body=Nothing to report here.
  18.  
  19. ; **** SMTP Setting Examples ****
  20. ; ** Local SMTP server **
  21. ;SMTPHost=127.0.0.1
  22. ;SMTPPort=25
  23. ;SMTPSSLEnable=0
  24. ;If you want to disable auth set SMTPAuthEnable to 0
  25. ;SMTPAuthEnable=0
  26. ;SMTPUID=localeamil@address.com
  27. ;SMTPPass=YourPass
  28. ; ** Gmail as SMTP server **
  29. ;SMTPHost=smtp.gmail.com
  30. ;SMTPPort=587
  31. ;SMTPSSLEnable=1
  32. ;If your email address is username@gmail.com, this should your username
  33. ;SMTPAuthEnable=1
  34. ;SMTPUID=username@gmail.com
  35. ;SMTPPass=password
  36.  
  37. SMTPHost=mail.(removed for privacy).net
  38. SMTPPort=465
  39. SMTPSSLEnable=1
  40. SMTPAuthEnable=1
  41. SMTPUID=s@(removed for privacy).net
  42. SMTPPass=(removed for privacy)
  43.  
  44. ; **** IF you get the following error: Exception calling "Send" with "4" argument(s): "The SMTP server requires a secure connection or the client waauthenticated. The server response was: 5.5.1 Authentication Required. Learn more at" -> You have your userid/password incorrect. ****
  45.  
  46. ;where to develop the body of the email prior to sending i.e. C:\SnapRAID\E-MailBody\
  47. ;If a full path is not specified, it will use %TEMP%\<filename>
  48. EmailBodyPath=
  49. EmailBodyFile=snapraid-email.out
  50. EmailBodyFileZip=snapraid-email.zip
  51. EmailOnSuccess=1
  52. EmailOnError=1
  53. IncludeExtendedInfo=0
  54. ; Including the Logfile as ZIP
  55. ; If set to 1 this Switch overrides the IncludeExtendedInfo to 0
  56. IncludeExtendedInfoZip=1
  57. LogFileMaxSizeZIP=512kb
  58. ; Max Attachment Size in MB (if the Attachment is too large sending Email may fail)
  59. MaxAttachSize=5mb
  60. ; Cut the logfile to contain just 1 entry per percent
  61. ShortenLogFile=1
  62.  
  63. ;where to collect temporary output i.e. C:\SnapRAID\Temp\
  64. ;If a full path is not specified, it will use %TEMP%\<filename>
  65. TmpOutputPath=
  66. TmpOutputFile=snapraid.out
  67. SnapRAIDStatusAfterScrub=1
  68.  
  69. ; **** Service Start/Stop ****
  70. ; 1 = start and stop services listed in $ProcessNames, 0 = do not start and stop services
  71. ServiceEnable=0
  72. ServiceName="CrashPlan Backup Service"
  73. ;,"VBoxVmService"
  74.  
  75. ; **** Pre/Post Schedule ****
  76. ; 1 = start process before and after snapraid processing
  77. ProcessEnable=0
  78. ProcessPre=C:\path\Power_On.exe
  79. ProcessPost=C:\path\Power_Off.exe
  80.  
  81. ; **** SnapRAID and Script Variables *****
  82. ; Number of Deletes before script will error out to be safe and require manual update.
  83. SnapRAIDDelThreshold=300
  84. SnapRAIDPath=c:\SnapRAID\
  85. SnapRAIDExe=Snapraid.exe
  86. SnapRAIDConfig=snapraid.conf
  87. SnapRAIDContentFiles=D:\snapraid.content,E:\snapraid.content,F:\snapraid.content
  88. SnapRAIDParityFiles=Z:\SnapRAID.parity
  89. SkipParityFilesAtStart=0
  90.  
  91. ; **** Log file Management ****
  92. ; dont forget the trailing \ on $LogPath
  93. LogPath=c:\SnapRAID\
  94. LogFileName=SnapRAID.log
  95. ; Maximum log file size in MB.
  96. LogFileMaxSize=25mb
  97. LogFileZipCount=10
  98.  
  99. ; **** EventLog Check Variables ****
  100. EventLogEnable=1
  101. EventLogSources="DISK","FTDISK","NTFS"
  102. EventLogEntryType="Error","Warning"
  103. ; Number of days to check into the past (must be negative number to make sense)
  104. EventLogDays=-1
  105. ; 1 aborts update, 0 reports but continues update
  106. EventLogHaltOnDiskError=0
  107.  
  108. ; **** Debug Variables ****
  109. EnableDebugOutput=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement