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:
Für den E-Mail Versand des [[Framework:Workflow_Manager|Workflow Managers]] muss folgender Eintrag im [[Technik:CoPlanner-Server#CopServer.exe.config|CopServer.exe.config]] bzw. [[Technik:CoPlanner-Server#Einstellungen_in_.E2.80.9ECopService.exe.config.E2.80.9C|CopService.exe.config]] vorhanden sein:
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:




Für den E-Mail Versand des [[Enterprise_Edition:Abonnement_Manager|Abonnement Managers]] muss folgender Eintrag in der [[Technik:Abo-System#AboExecutor.exe.config|AboExecutor.exe.config]] vorhanden sein:
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:




:*Das <font color="#990000"><b>deliveryMethod</b></font>-Attribut gibt die Übermittlungsmethode für E-Mails an. Zulässige Werte sind "network", "pickupDirectoryFromIis" und "specifiedPickupDirectory".<br>
:*<font color="#990000"><b>deliveryMethod</b></font>: Specifies the delivery method for e-mails. Acceptable values are network, pickupDirectoryFromIis, and specifiedPickupDirectory.<br>
:*Das <font color="#990000"><b>from</b></font>-Attribut gibt die Absenderadresse für E-Mails an.<br>
:*<font color="#990000"><b>from</b></font>: Specifies the from address for e-mails.<br>
:*Das <font color="#990000"><b>specifiedPickupDirectory</b></font>-Attribut legt das Verzeichnis fest, in dem Anwendungen E-Mail-Nachrichten zur späteren Verarbeitung mit dem SMTP-Server speichern. Im Beispiel ist "c:\temp\pickup" als E-Mail-Pickup-Verzeichnis angegeben.
:*<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".
:*Das <font color="#990000"><b>network</b></font>-Attribut konfiguriert die Netzwerkoptionen für einen externen SMTP-Server.<br>
:*<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