Current time: 05-04-2024, 12:32 PM Hello There, Guest! (LoginRegister)


Post Reply 
Autoresponder im Webmail integrieren
Author Message
Stefan_1982 Offline
Junior Member
*

Posts: 27
Joined: Sep 2009
Reputation: 0
Post: #1
Question Autoresponder im Webmail integrieren
Hallo

Leider habe ich im Forum nichts entdeckt.

PWD über die Webmail Oberfläche funktioniert nun Problemlos
http://www.isp-control.net/forum/thread-7936.html

Jetzt ist aber meine Frage gibt es eine Möglichkeit den Punkt Autoresponder auch ins Squirrelmail zu integrieren.

Einfach links auf der Seite Menüpunkt Autoresponder und rechts kommt dann der Inhalt.

So dies ist jetzt vorerst mal meine letzte Frage alles andere Funktioniert perfekt
mfg
(This post was last modified: 09-23-2009 05:29 PM by Stefan_1982.)
09-23-2009 05:27 PM
Find all posts by this user Quote this message in a reply
gOOvER Offline
Banned

Posts: 3,561
Joined: Jul 2007
Post: #2
RE: Autoresponder im Webmail integrieren
Schau mal auf der Squirrel Seite. Evtl gibts dafür ja ein Plugin. Wink
09-23-2009 05:30 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Stefan_1982 Offline
Junior Member
*

Posts: 27
Joined: Sep 2009
Reputation: 0
Post: #3
RE: Autoresponder im Webmail integrieren
Vielen Dank
Mein Fehler werde ich gleich mal probieren
09-23-2009 05:51 PM
Find all posts by this user Quote this message in a reply
joximu Offline
helper
*****
Moderators

Posts: 7,024
Joined: Jan 2007
Reputation: 92
Post: #4
RE: Autoresponder im Webmail integrieren
ich glaube nicht, dass es ein fertiges Plugin gibt, welches für ispcp passt.

aber wenns eines gibt, mit SQL Schnittstelle, dann sollte es machbar sein.

Gruss
J
09-23-2009 05:58 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Stefan_1982 Offline
Junior Member
*

Posts: 27
Joined: Sep 2009
Reputation: 0
Post: #5
RE: Autoresponder im Webmail integrieren
Ich habe mir die plugins mal angesehen leider nur für FTP IMAP
http://squirrelmail.org/plugin_view.php?id=172
Sad
09-23-2009 06:03 PM
Find all posts by this user Quote this message in a reply
gOOvER Offline
Banned

Posts: 3,561
Joined: Jul 2007
Post: #6
RE: Autoresponder im Webmail integrieren
http://squirrelmail.org/plugins_category...gory_id=19
09-23-2009 06:06 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Stefan_1982 Offline
Junior Member
*

Posts: 27
Joined: Sep 2009
Reputation: 0
Post: #7
RE: Autoresponder im Webmail integrieren
Hallo leider bekomme ich dies nicht ganz hin.

Ich vermute das richtige plugin wäre ->

Courier Vacation
http://squirrelmail.org/plugin_view.php?id=187

Ich habe folgendes in der Config eingestellt.
Ich vermute mal dass ich die ganz falsch hab. Sad


<?php


// global variables - don't touch these unless you want to break the plugin
//
global $messageFileName, $subjectFileName, $ccAddressesFileName,
$keepMessagesFileName, $backend;
global $mysql_server, $mysql_user, $mysql_pwd, $mysql_database,
$mysql_home_field, $mysql_table, $mysql_userid_field;



//
// file names...
//


// file in user's directory where vacation message text is kept
//
$messageFileName = 'vacation.txt';


// file in user's directory where vacation message subject is kept
//
$subjectFileName = 'vacation_subject.txt';


// file in user's directory where cc addresses are kept
//
$ccAddressesFileName = 'vacation_cc_addresses.txt';


// file in user's directory that serves as a flag that messages
// should be retained in the local account as well as forwarding copies...
//
$keepMessagesFileName = 'vacation_keep_messages.txt';




//
// backend settings
//


// this setting determines where your user settings are
// stored. currently, only MySQL is supported, although
// that could change...
//
$backend = 'mysql';


//
// MySQL settings
//


// your MySQL server
//
$mysql_server = 'localhost';


// the MySQL user ID
//
$mysql_user = 'root'; <- zum testen dann eigener user das ist aber sicher falsch würde hier mail_id kommen?


// the MySQL user's password
//
$mysql_pwd = 'mypwd';


// the MySQL database that contains email account information
//
$mysql_database = 'ispcp';


// the MySQL table that contains email account information
//
$mysql_table = 'mail_users';


// the MySQL field that contains users' home directory locations
//
$mysql_home_field = 'home'; <- da bin ich mir nicht ganz sicher


// the MySQL field that contains users' IDs
//
$mysql_userid_field = 'userid'; <- da bin ich mir nicht ganz sicher[B


?>

Vielleicht weis jemand ob ich das wenigstens ein bisschen richtig gemacht habe. Wink
folgender Fehler kommt dann im Squi...

Fatal error: Call to undefined function sqgetGlobalVar() in /var/www/ispcp/gui/tools/webmail/plugins/compatibility/includes/1.5.2/global.php on line 942
(This post was last modified: 09-24-2009 04:14 PM by Stefan_1982.)
09-24-2009 04:07 PM
Find all posts by this user Quote this message in a reply
gOOvER Offline
Banned

Posts: 3,561
Joined: Jul 2007
Post: #8
RE: Autoresponder im Webmail integrieren
Wo hast Du das "home" her?
09-24-2009 04:35 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Stefan_1982 Offline
Junior Member
*

Posts: 27
Joined: Sep 2009
Reputation: 0
Post: #9
RE: Autoresponder im Webmail integrieren
is bei der standard config drinn
Wäre das richtig?

// the MySQL user ID
//
$mysql_user = 'mail_id';


// the MySQL user's password
//
$mysql_pwd = 'mail_pass';
(This post was last modified: 09-24-2009 04:54 PM by Stefan_1982.)
09-24-2009 04:42 PM
Find all posts by this user Quote this message in a reply
gOOvER Offline
Banned

Posts: 3,561
Joined: Jul 2007
Post: #10
RE: Autoresponder im Webmail integrieren
Bei ispCP gibt es das nicht in der DB. Das wird über die ispcp.conf angegeben. Die einzigste Möglichkeit wäre, wenn Du den Eintrag "home" in der DB anlegst und es manuel befüllst.
09-24-2009 04:55 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)