Technics:E-Mail Settings: Difference between revisions
From CoPlanner 10
Jump to navigationJump to search
Created page with 'Für den E-Mail Versand des Workflow Managers muss folgender Eintrag im CopServer.exe.config bzw.…' |
No edit summary |
||
| (7 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Following tag has to be available in [[Technics:CoPlanner-Server#CopServer.exe.config|CopServer.exe.config]] and [[Technics:CoPlanner-Server#CopService.exe.config|CopService.exe.config]] for the [[Framework:Workflow_Manager|Workflow Managers]]. | |||
<font color="#0000ff"><</font><font color="#a31545">system.net</font><font color="#0000ff">></font> | <font color="#0000ff"><</font><font color="#a31545">system.net</font><font color="#0000ff">></font> | ||
| Line 14: | Line 14: | ||
Following tag has to be available in [[Technics:Abo-System#AboExecutor.exe.config|AboExecutor.exe.config]] for the [[Enterprise_Edition:Subscription_Manager|Subscription Manager]]. | |||
<font color="#0000ff"><</font><font color="#a31545">system.net</font><font color="#0000ff">></font> | <font color="#0000ff"><</font><font color="#a31545">system.net</font><font color="#0000ff">></font> | ||
| Line 30: | Line 30: | ||
:* | :*<font color="#990000"><b>deliveryMethod</b></font>: Specifies the delivery method for e-mails. Acceptable values are network, pickupDirectoryFromIis, and specifiedPickupDirectory.<br> | ||
:* | :*<font color="#990000"><b>from</b></font>: Specifies the from address for e-mails.<br> | ||
:* | :*<font color="#990000"><b>specifiedPickupDirectory</b></font>: Configures the local directory for a Simple Mail Transport Protocol (SMTP) server. In this example the pickup directory is "c:\temp\pickup". | ||
:* | :*<font color="#990000"><b>network</b></font>: Configures the network options for an external SMTP server<br> | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
[[Category:Technics|E-Mail Settings]] | [[Category:Technics|E-Mail Settings]] | ||
[[de:Technik:E-Mail_Versand_Einstellungen]] | [[de:Technik:E-Mail_Versand_Einstellungen]] | ||
Latest revision as of 10:27, 15 July 2010
Following tag has to be available in CopServer.exe.config and CopService.exe.config for the Workflow Managers.
<system.net>
<mailsettings>
<smtp deliveryMethod="Network" from="aboexecutor@coplanner.com">
<network
host="psad001.graz.coplanner.com"
port="25"
defaultCredentials="true"
/>
</smtp>
</mailsettings>
</system.net>
Following tag has to be available in AboExecutor.exe.config for the Subscription Manager.
<system.net>
<mailsettings>
<smtp deliveryMethod="SpecifiedPickupDirectory" from="aboexecutor@coplanner.com">
<specifiedPickupDirectory pickupDirectoryLocation="c:\temp\pickup"/>
<network
host="psad001.graz.coplanner.com"
port="25"
defaultCredentials="true"
/>
</smtp>
</mailsettings>
</system.net>
- deliveryMethod: Specifies the delivery method for e-mails. Acceptable values are network, pickupDirectoryFromIis, and specifiedPickupDirectory.
- from: Specifies the from address for e-mails.
- specifiedPickupDirectory: Configures the local directory for a Simple Mail Transport Protocol (SMTP) server. In this example the pickup directory is "c:\temp\pickup".
- network: Configures the network options for an external SMTP server
- deliveryMethod: Specifies the delivery method for e-mails. Acceptable values are network, pickupDirectoryFromIis, and specifiedPickupDirectory.