ISPconfig + postfix virtual using mysql

Discussion in 'Installation/Configuration' started by nitbix, Feb 21, 2006.

  1. nitbix

    nitbix New Member

    Hello, I am trying to think of a patch for ISPconfig so that it can manage postfix's virtual domains using mysql. Can anyone explain me roughly which operations are done when a client adds an email? I will make the code available once it is ready, so eventually it could help building a new feature.
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Hi, these parts of the code where executed:

    1) The code in the file:

    /home/admispconfig/ispconfig/lib/classes/ispconfig_isp_user.lib.php

    is executed. You will find several functions inside this class. The functions are named like the event when thei are called. E.g. user_insert us called after a user is inserted, user_update is called when a user is updated etc.

    These functions are mostly for validating the input.

    2) Then the function user_insert / user_update, etc. in the file /root/ispconfig/scripts/lib/config.lib.php where called. These functions where run with root priveliges and they create the linux user accounts and email configuration.

    If you want to make your code available to the iSPConfig project, please make shure that the user is able to switch between the current system user based approach and your mysql based approach by a setting in the isp_server table.
     
  3. nitbix

    nitbix New Member

    Thank you, I will try and make it the best way possible. I think though that it whould need some adapting before going into ISPconfig's code :D
     

Share This Page