psa-spamdyke

General Discussion of atomic repo and development projects.

Ask for help here with anything else not covered by other forums.
zeki
Forum Regular
Forum Regular
Posts: 120
Joined: Sat Aug 12, 2006 8:14 am

psa-spamdyke

Unread post by zeki »

hello
i installed:

psa-spamdyke-2.3.3-1.el5.art
spamdyke-4.0.10-6.el5.art

whats with creating the sql db/tables?
where i can see the webinterface psa-spamdyke in plesk?

i dont have an entry like "Atomic Secured Linux" in the left panel....

any tips?
thanks
zeki
BruceLee
Forum Regular
Forum Regular
Posts: 879
Joined: Sat Mar 28, 2009 6:58 pm
Location: Germany

Re: psa-spamdyke

Unread post by BruceLee »

I don't know exactly how Scotts rpm is working, but I bet you will find the button under each Domain.
Check if a spamdyke database is created and check the /etc/spamdyke.conf.
if no db exists you can create one with:

Code: Select all

mysql: 
CREATE DATABASE spamdyke;
USE spamdyke;
CREATE TABLE `spamdyke_log_table` (
	`id` bigint(7) NOT NULL auto_increment,
	`time` timestamp NOT NULL default CURRENT_TIMESTAMP,
	`reason` varchar(30) character set utf8 NOT NULL,
	`from` varchar(50) character set utf8 NOT NULL,
	`to` varchar(50) character set utf8 NOT NULL,
	`ip` varchar(15) character set utf8 NOT NULL,
	`rdns` varchar(50) character set utf8 NOT NULL,
	`auth` varchar(25) character set utf8 NOT NULL,
	PRIMARY KEY  (`id`),
	KEY `time` (`time`),
	KEY `reason` (`reason`,`from`,`to`,`ip`,`rdns`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
	
GRANT ALL ON spamdyke.* TO 'spamdyke'@'localhost' IDENTIFIED BY 'spamdyke';
FLUSH PRIVILEGES;
zeki
Forum Regular
Forum Regular
Posts: 120
Joined: Sat Aug 12, 2006 8:14 am

Re: psa-spamdyke

Unread post by zeki »

okay thanks.


i dont see a spamdyke button in plesk...hmmm
BruceLee
Forum Regular
Forum Regular
Posts: 879
Joined: Sat Mar 28, 2009 6:58 pm
Location: Germany

Re: psa-spamdyke

Unread post by BruceLee »

domain view! not the start page
look under the admin account under custom buttons if a button was created.
zeki
Forum Regular
Forum Regular
Posts: 120
Joined: Sat Aug 12, 2006 8:14 am

Re: psa-spamdyke

Unread post by zeki »

year, but no button is defiened there...only asl and the standard ones...
dont exist an admin interface for general settings for spamdyke that is visible under the admin view?
BruceLee
Forum Regular
Forum Regular
Posts: 879
Joined: Sat Mar 28, 2009 6:58 pm
Location: Germany

Re: psa-spamdyke

Unread post by BruceLee »

Make a new Custom Button with the following settings:

Button label: Just choose a name ;-)
Location: Domain administration page
Priority: 100
Background image: choose the dslogo.gif of the ZIP
URL: your directory you made above an the index file (e.g. "/spamdyke/index.php")
Include domain id: yes
Include domain name: yes
Include FTP Login: no
Include FTP password: no
Include client id: yes
Include client's company name: no
Include client's contact name: no
Include client's e-mail: no
Context help tip contents: whatever you want
Open URL in the Control Panel: yes
Visible to all sub-logins: yes (if your clients are allowed to manager their spamdyke)
scott
Atomicorp Staff - Site Admin
Atomicorp Staff - Site Admin
Posts: 8355
Joined: Wed Dec 31, 1969 8:00 pm
Location: earth
Contact:

Re: psa-spamdyke

Unread post by scott »

For some reason module doesnt seem to detect spamdyke either. If someone could investigate what is going on there that would be great.
BruceLee
Forum Regular
Forum Regular
Posts: 879
Joined: Sat Mar 28, 2009 6:58 pm
Location: Germany

Re: psa-spamdyke

Unread post by BruceLee »

since I have installed this version manually a few weeks ago I would like to help and installed it on a testmachine.
As far as I can see the only thing that seems to be missing is the settings in /etc/xinetd.d/smtps_psa.
What errors do you get or how does it react?
scott
Atomicorp Staff - Site Admin
Atomicorp Staff - Site Admin
Posts: 8355
Joined: Wed Dec 31, 1969 8:00 pm
Location: earth
Contact:

Re: psa-spamdyke

Unread post by scott »

I didnt spend more than a minute on it, but the web interface said that spamdyke wasnt installed
BruceLee
Forum Regular
Forum Regular
Posts: 879
Joined: Sat Mar 28, 2009 6:58 pm
Location: Germany

Re: psa-spamdyke

Unread post by BruceLee »

I think its due to the wrapper file.
Two versions of the wrapper files exists for the spamdyke and other addons.

one for plesk 7+8
and one for plesk 9

not easy to find on the page:
http://www.haggybear.com/downloads?func=select&id=4
After a click on wrapper 9 for example you get to page that looks almost the same as the normal
addon download page does. For each addon you get a wrapper file.
scott
Atomicorp Staff - Site Admin
Atomicorp Staff - Site Admin
Posts: 8355
Joined: Wed Dec 31, 1969 8:00 pm
Location: earth
Contact:

Re: psa-spamdyke

Unread post by scott »

I was testing this in 8.6. Is anyone on 9.x that can test the current package to rule this out?

And yeah, I noticed how cryptic it was to find any of the files :P
BruceLee
Forum Regular
Forum Regular
Posts: 879
Joined: Sat Mar 28, 2009 6:58 pm
Location: Germany

Re: psa-spamdyke

Unread post by BruceLee »

I have installed it on centos64bit+plesk9 vmware and it acts like I know it
zeki
Forum Regular
Forum Regular
Posts: 120
Joined: Sat Aug 12, 2006 8:14 am

Re: psa-spamdyke

Unread post by zeki »

im on plesk 9.01 and 9.3 and you see what i get

- no icon
- not automatic databse creating
- no entry in smtp_psa / smtps_psa
BruceLee
Forum Regular
Forum Regular
Posts: 879
Joined: Sat Mar 28, 2009 6:58 pm
Location: Germany

Re: psa-spamdyke

Unread post by BruceLee »

well all this, except the icon, is working on my testmachine centos 64 bit!! with plesk 9.
Do you run a 64bit system?
premierhosting
Forum Regular
Forum Regular
Posts: 257
Joined: Wed Aug 04, 2010 2:52 pm

Re: psa-spamdyke

Unread post by premierhosting »

Anyone have the wrapper / plesk admin working on Plesk 10? You can get to an interface by manually going to your plesk url/spamdyke/ but no links are appearing. Especially for end users.
Post Reply