Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
auto-tx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vamp
auto-tx
Commits
56351fde
Commit
56351fde
authored
7 years ago
by
Niko Ehrenfeuchter
Browse files
Options
Downloads
Patches
Plain Diff
Add AdminDebugEmailAdress config option.
parent
c9e1970d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
AutoTx/AutoTx.cs
+3
-0
3 additions, 0 deletions
AutoTx/AutoTx.cs
AutoTx/Resources/configuration-example.xml
+3
-0
3 additions, 0 deletions
AutoTx/Resources/configuration-example.xml
AutoTx/XmlWrapper/ServiceConfig.cs
+1
-0
1 addition, 0 deletions
AutoTx/XmlWrapper/ServiceConfig.cs
with
7 additions
and
0 deletions
AutoTx/AutoTx.cs
+
3
−
0
View file @
56351fde
...
...
@@ -289,6 +289,9 @@ namespace AutoTx
writeLogDebug
(
"SmtpHost: ====== Not configured, disabling notification emails! ======"
);
}
else
{
writeLogDebug
(
"SmtpHost: "
+
_config
.
SmtpHost
);
writeLogDebug
(
"EmailFrom: "
+
_config
.
EmailFrom
);
writeLogDebug
(
"AdminEmailAdress: "
+
_config
.
AdminEmailAdress
);
writeLogDebug
(
"AdminDebugEmailAdress: "
+
_config
.
AdminDebugEmailAdress
);
}
writeLogDebug
(
""
);
...
...
This diff is collapsed.
Click to expand it.
AutoTx/Resources/configuration-example.xml
+
3
−
0
View file @
56351fde
...
...
@@ -78,4 +78,7 @@
admin notification before sending the next one -->
<AdminNotificationDelta>
60
</AdminNotificationDelta>
<AdminEmailAdress>
admin@mydomain.xy
</AdminEmailAdress>
<!-- AdminDebugEmailAdress: an email address where to send certain debug
messages to, e.g. on completed transfers. Can be empty. -->
<AdminDebugEmailAdress>
admin@mydomain.xy
</AdminDebugEmailAdress>
</ServiceConfig>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
AutoTx/XmlWrapper/ServiceConfig.cs
+
1
−
0
View file @
56351fde
...
...
@@ -59,6 +59,7 @@ namespace AutoTx.XmlWrapper
public
string
SmtpPasswortCredential
{
get
;
set
;
}
public
string
EmailFrom
{
get
;
set
;
}
public
string
AdminEmailAdress
{
get
;
set
;
}
public
string
AdminDebugEmailAdress
{
get
;
set
;
}
public
string
EmailPrefix
{
get
;
set
;
}
public
int
ServiceTimer
{
get
;
set
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment