Author |
Message |
scubamaxx
New Member


Joined: Aug 18, 2002
Posts: 11
Location: Vienna, Austria
|
Posted:
Mon May 31, 2004 11:35 am |
|
Hi !!!!
You did a great job with your tool Now i can better sleep at night than before
So i want to ask u to include an option to email the admin when a attack was blocked by the system. Also which is able to be turned on and off.
Because it could be very helpfull, when u can forward this email later via SMS to your cellphone.
thanx
maxx |
Last edited by scubamaxx on Mon May 31, 2004 12:28 pm; edited 1 time in total |
|
 |
 |
stephen2417
Worker


Joined: Jan 18, 2004
Posts: 244
Location: Bristolville, OH
|
Posted:
Mon May 31, 2004 11:38 am |
|
Its there..
Hope you dont mind me telling bob. BTW its great so far! |
|
|
|
 |
scubamaxx

|
Posted:
Tue Jun 01, 2004 3:03 am |
|
stephen2417 wrote: | Its there.. |
Ooops
I dindn see it till now u said
But, it would be cool to specify a other email to, not only the system admin email from nuke. Because my email2sms address is different to the admin address.
thanx
maxx |
|
|
|
 |
BobMarion
Former Admin in Good Standing

Joined: Oct 30, 2002
Posts: 1037
Location: RedNeck Land (known as Kentucky)
|
Posted:
Tue Jun 01, 2004 10:27 am |
|
We can add a second email address value. 1.1.0 uses a newer config table that will make additions much easier in the furture versions :0 |
_________________ Bob Marion
Codito Ergo Sum
Only registered users can see links on this board! Get registered or login! |
|
|
 |
squiresmk
Regular


Joined: May 31, 2004
Posts: 95
Location: NY
|
Posted:
Tue Jun 01, 2004 12:34 pm |
|
Yeah for the newer config table style! Should be standard these days =P |
|
|
 |
 |
SmackDaddy
Involved


Joined: Jun 02, 2004
Posts: 268
Location: Englewood, OH
|
Posted:
Wed Jun 02, 2004 2:11 am |
|
BobMarion wrote: | We can add a second email address value. 1.1.0 uses a newer config table that will make additions much easier in the furture versions :0 |
So how do I add an email to have Sentinel email me? (or a second or third)?
And.....What should I be seeing on the following page?
-- http://www.mydomain.com/admin.php?op=ABMain (just the links to the Sentinel Config and IP options?)
Mine is blank except for the two columns of links (6 links total) at the top, is that the way it should be?
And HTACCESS path.....not exactly sure how mine should be if I have my stuff set as mydomain.com/ |
|
|
|
 |
Raven
Site Admin/Owner

Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Wed Jun 02, 2004 4:47 am |
|
SmackDaddy wrote: | So how do I add an email to have Sentinel email me? (or a second or third)? | For right now, try this. On or about line 387 you should see this codeCode: $adminmail = $nuke_config['adminmail'];
| Add this line after it, substituting another email address. I haven't tested it so it may still need tweaking .Code:$adminmail .= ",NEXT_MAIL_ADDRESS";
|
Quote: | And.....What should I be seeing on the following page?
-- http://www.mydomain.com/admin.php?op=ABMain (just the links to the Sentinel Config and IP options?)
Mine is blank except for the two columns of links (6 links total) at the top, is that the way it should be? | Yes
Quote: | And HTACCESS path.....not exactly sure how mine should be if I have my stuff set as mydomain.com/ | Try .htaccess |
Last edited by Raven on Wed Jun 02, 2004 5:54 am; edited 1 time in total |
|
|
 |
SmackDaddy

|
Posted:
Wed Jun 02, 2004 5:11 am |
|
Raven wrote: | For right now, try this. On or about line 427 you should see this codeCode: $adminmail = $nuke_config['adminmail'];
| Add this line after it, substituting another email address. I haven't tested it so it may still need tweaking .Code:$adminmail .= ",NEXT_MAIL_ADDRESS";
| |
I have added that (it was line 387 for me ?)....but should the period be removed from before the "=" sign???
And if that doesn't work, then would I just be able to do the following:
Code:$adminmail = "myemail@mydomain.com";
|
And leave it at that? What about:
Code:$adminmail = "myemail@mydomain.com,myemail2@mydomain.com";
|
?
Quote: | And.....What should I be seeing on the following page?
-- http://www.mydomain.com/admin.php?op=ABMain (just the links to the Sentinel Config and IP options?)
Mine is blank except for the two columns of links (6 links total) at the top, is that the way it should be?
Yes |
Thank you.
Quote: | And HTACCESS path.....not exactly sure how mine should be if I have my stuff set as mydomain.com/
Try .htaccess |
Yup, that worked. Thanks again!! |
|
|
|
 |
Raven

|
Posted:
Wed Jun 02, 2004 5:53 am |
|
You are correct on the line number I was also looking at where it was actually called (I have edited my original post). And yes, the .= is a concatanation operator. That way you don't actually modify the original but add to it. Any of the methods you state will work though (or should). |
|
|
|
 |
SmackDaddy

|
Posted:
Wed Jun 02, 2004 6:04 am |
|
Raven wrote: | You are correct on the line number I was also looking at where it was actually called (I have edited my original post). And yes, the .= is a concatanation operator. That way you don't actually modify the original but add to it. Any of the methods you state will work though (or should). |
Thank you.
Now I am just looking for a smaller "Sentinel Protected" graphic to use on my website that I can use in a side block that's not a banner size......so if you or Bob come up with one, please let us know! Thanks!  |
|
|
|
 |
Raven

|
Posted:
Wed Jun 02, 2004 6:09 am |
|
There are 3 sizes in the images file supplied with Sentinel(tm). Do none of them work for you? |
|
|
|
 |
SmackDaddy

|
Posted:
Wed Jun 02, 2004 6:18 am |
|
Raven wrote: | There are 3 sizes in the images file supplied with Sentinel(tm). Do none of them work for you? |
They work.....I will make the medium work for what I am looking for.....I was looking for something a little larger, but..... it'll do....thanks. |
|
|
|
 |
SmackDaddy

|
Posted:
Wed Jun 02, 2004 6:47 am |
|
Raven wrote: | You are correct on the line number I was also looking at where it was actually called (I have edited my original post). And yes, the .= is a concatanation operator. That way you don't actually modify the original but add to it. Any of the methods you state will work though (or should). |
Just wanted to let you know that it worked.....just got an email confirmation of a blocked IP.....
Code:$adminmail .= ",NEXT_MAIL_ADDRESS";
|
Worked like a charm.....  |
|
|
|
 |
scubamaxx

|
Posted:
Wed Jun 02, 2004 7:54 am |
|
Hi !!!!
I also tried to add a second email, but it doesn’t work.
like this:
Code:$adminmail .= ",NEXT_MAIL_ADDRESS";
|
So i tried many different things, an now i know the reason why not. The function Email IP lookup was active so i turned it off and now it works
cya
maxx |
|
|
|
 |
|