Support Forum
I've just installed the post by email plugin.. Can you help me to set it correctly?? I've read this http://codex.simple-press.com/.....-by-email/ but I've not understood something. What does "name of the mail server" mean ??? And what does "Each forum for which you opt to enable PBE requires it’s own, unique mailbox" mean ??? If I have on my website 10 forum do I have to create 10 mailboxes ??? I've not understood really well Thank you for your help
Each forum that you setup for PBE has to have it's own email address but all use the same password.
The mail server is where or what is handling the emails.
Most people use the same mail server they have for their website. If you want to do that you would go to your server's email setup and add an new email address. The email address would be the forum slug/name and the server name. So something like forumone@mywebsite.com.
In the main email options the servername you put in would be the server name shown when you setup the email. In lot of cases they are something like mail.mywebsite.com When you setup the email address it should show you all the settings needed.
Then add the email address to the forum itself under the forum edit properties. Once that is done you can run the little test under the email options and see if it connects. After that you can add more email addresses to your server and assign them to each forum. Just be sure to use the same password for all of them.
You also have to setup the permissions for members to use it as shown in that codex article.
I've managed:) thank you.. I've another two questions if I can..
1) In "permission" I've turned off the possibility to users to reply to topics using email. So a user will receive just the content of a new message for example, but he could not reply it.. At the end of each email there is a line that says that in order to delete the subscription the user should visit his own profile at http : mywebsite / forum/profile..subscriptions (something like this). The problem is that because I don't use simplepress profile but another, users don't have access to that url. Is there a way to delete that line ??? Thank you for your help
2) The emails that users receive have as sender "WORDPRESS" and not the name of my website. For example the emails that I receive from simplepress forum have as sender Simple:Press Support and not Wordpress. Is there a way to change this with the name of my website ????
Thank you very much
- That's a very good question. There is no easy way of doing it - messy ways bit not an easy way. I think we should possibly address this in the plugin and suppress that prt of the email dependent upon profile setting. We will discuss the pros and cons of doing that here.
- Have you set up the email values in the forum admin > Options > Email Settings?
YELLOW
SWORDFISH
|
for now, you can use the filter 'sph_subscriptions_notification' to strip out that message from your emails...
Visit Cruise Talk Central and Mr Papa's World
http://codex.wordpress.org/Plugin_API is how WP does filters (and hooks)... we support the same system..
so something like
add_filter('sph_subscriptions_notification', 'my_subs_email_filter'); function my_subs_email_filter($msg) { $msg = str_replace('your string', '', $msg); return $msg; }
just change the text in the quotes 'your string' with the exact line from the emails you want to remove...
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)