• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Feedback form SMTP error

C

carlos creel

Guest
I have created a feedback form, however when the form is submitted, I get this error:

Cannot send feedback. Please check your connection settings and try again.
Unable to connect to the SMTP server. Please contact site administrator if the problem persists.


Do I need to configure something else?? The pages in the manual don't list errors...

thanks for ANY response

CC
 
There are two places to change SMTP settings:

1.- Admin Panel - Server - SMTP Server Settings
2.- Admin Panel - Server - Hosts - [Select Host] - SMTP Settings Tab

I don't know the difference, in my case feedback is not working even if I configure both options.

but finally i solved the problem, you must go directly to web.config file of yout site and set the <mailSettings> tag like this

<configuration>
...
...
<system.net>
...
...
<mailSettings>
<smtp deliveryMethod="Network" from="[email protected]">
<network defaultCredentials="false" host="mail.domain.com" port="25" userName="usr" password="pwd" />
</smtp>
</mailSettings>
</system.net>
...
...
</configuration>

I don't know why SB do not update tag when publish.
someone can help? i don't want to update web.config manually for every site
 
Hello,
By configuring this tab Admin Panel - Server - Hosts - [Select Host] - SMTP Settings Tab and modify the feedback form properties save the page and submit the site, I don't need make any modifications in web;config file

greets
 
Back
Top