Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Stopping Rejection Email Notification

Quote Reply
Stopping Rejection Email Notification
I was wondering how I stop Links 2 from sending out an email letting the register or spammer know that their link was rejected? All this seems to do is spur the spammers on by confirming their tactics are working. I've tried deleting the actual message in the email-del.txt template but there must be a default message file somewhere that I cannot find. I looked in links.cfg but there is no setting to set for rejected links,
only
Code:
# Notify visitors automatically when their links are validated?
$db_email_add = 1;
# Notify visitors automatically when their links are modified?
$db_email_modify = 1;
Basshook

Last edited by:

Basshook: Jan 31, 2010, 10:48 AM
Quote Reply
Re: [Basshook] Stopping Rejection Email Notification In reply to
In admin/db.pl find:

Code:
else { &html_reject_email (%{$links{$id}}); }

and change to:

Code:
else { }

Untested (so make a backup first) - but looks like that should do the trick.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Stopping Rejection Email Notification In reply to
Wink That makes sense, thanks Andy I'll give it a go.
Basshook
Quote Reply
Re: [Basshook] Stopping Rejection Email Notification In reply to
Smile It seems to work so far Andy thanks again.
Basshook