create email user via remoting

Discussion in 'Developers' Forum' started by seca4all, Oct 13, 2010.

  1. seca4all

    seca4all New Member

    Hi everybody,
    at first , i' m very happy to join the ispconfig community , it is really a great tool.. so thank you to the developer ..

    Here is my probleme:
    When i create an email user using the ispconfig web interface , all work fine , my user receive his email normally.

    but when i create an email user using remoting , all seems good , my user is well created , his mail directory is also good.
    i can connect on the webmail ... but this user ( created using remoting) never receive any mail
    i try to send an email to him localy , he did not receive it .
    i'm using ispconfig 3.0.3

    i hope you can help me ..
    thank you
    Michael
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Please compare the lines that appear in the mail log for the working and not working account if there is some kind of error message. And please post the data record from the mail_user table of the mysql database for the user that you creatd with ispconfig.
     
  3. seca4all

    seca4all New Member

    it works now
    Looking in mailuser table i see that imapdisable and popdisable was blank and they must be "n"
    The error was in the exampe script i used to creat my own script : soap-mailuser-add.php

    'disableimap' => '0',
    'disablepop3' => '0');
    must be replace by
    'disableimap' => 'n',
    'disablepop3' => 'n');
    and now , it works fine
    maybe this info can help someone else
     

Share This Page