Quote:
Originally Posted by amphicar770
Cyricx,
Once again, thanks for the greatest mod ever. I do hope everyone is donating some $$ to your effort.
Three quick questions.
1) Under vbulletin - email integration settings it says, "See the "Install File" on how to change the default email type." I do not see this info? How do you set default?
|
Ah bugger, I forgot to include the query in that.
If you want to change the default way that everyone sees the emails while allowing them to choose what they want, you need to run a query.
Be sure to replace (TABLEPREFIX) with your table prefix or remove that if you do not use one.
This query changes the default value for the field for new users that register from this point on to 1 which is for HTML emails.
Code:
ALTER TABLE `(TABLEPREFIX)user` CHANGE `ei_format` `ei_format` INT(3) NOT NULL DEFAULT '1';
And this query changes all the current users to using the html format.
Code:
UPDATE `(TABLEPREFIX)user` set `ei_format` = '1';
This is assuming your going to leave it so that user's can choose what format they want. From here they can go in and change it to plain text if they want.
If you DO NOT want to let user's choose and want to force html, just use the options in the vbulletin options.
Quote:
Originally Posted by amphicar770
|
This is similiar to what happens with vbadvanced. You'll need to go into your smilies and change the path to them to be the full url to the smilie. For example
http://www.yourdomain.com/forum/imag...ies/smilie.gif
Quote:
Originally Posted by amphicar770
3) After upgrade is it now using vbmail automatically or do I have to modify something? Stupid question but what would it be using otherwise?
Thanks again.
|
You need to do nothing. All emails are now sent through vbmail

It's automatic
Hope this helps!!