אודה אם תוכלו לעזור כמו שאתם רגילים,
בימים האחרונים ביצעתי הטמעה של מערכת BUGTRACKER.NET לאירגון שלנו לטובת איחזור תקלות IT במערכת מסודרת - המערכת פועלות ועובדת לא רע.
אני מעוניין לקבל מייל כאשר מכניסים לי קריאת IT בתוכנה וכשאני ניגש לWEB.CONFIG להגדיר את זה מופיעות לי 3 אופציות בתוך COMMENT כאשר אני צריך לאקטב אחת מהן.
בחרתי באופציה של הGMAIL - על מנת "לאקטב" את האופציה אני מוחק את תחילת הפיסקה של הCOMMENT ואת הסיום.
הדבר שובר לי את הWEB.CONFIG.
אודה אם תוכלו לעזור.
מצורף הקודם הרלוונטי של הSMTP מתוך הWEB.CONFIG
קוד: בחירת הכל
<!-- deliveryMethod Specifies the delivery method for e-mails. Acceptable values are network, pickupDirectoryFromIis, and specifiedPickupDirectory. -->
<!-- what I use for testing - emails just go into the folder and don't get sent. You probably don't want this setting. -->
<mailSettings>
<smtp deliveryMethod="specifiedPickupDirectory">
<specifiedPickupDirectory pickupDirectoryLocation="C:\temp\pickup"/>
</smtp>
</mailSettings>
<!-- These settings work for me for GMail -->
<!--
<mailSettings>
<smtp>
<network
host="smtp.gmail.com"
port="465"
userName="it@*****.co.il"
password="*******"
/>
</smtp>
</mailSettings>
-->
<!-- These settings work for my demo site hosted at GoDaddy -->
<!--
<mailSettings>
<smtp>
<network
host="relay-hosting.secureserver.net"
port="25"
userName="[email protected]"
password="MY PASSWORD"
/>
</smtp>
</mailSettings>
-->
<!-- These settings do NOT for me for sbcglobal acct because of the issue here: http://stackoverflow.com/questions/172203/why-does-system-net-mail-fail-where-system-web-mail-works -->
<!--
<mailSettings>
<smtp>
<network
host="smtp.att.yahoo.com"
port="465"
userName="[email protected]"
password="MY PASSWORD"
/>
</smtp>
</mailSettings>
-->

