Howto setup roundcube password plugin with sql driver and mysql encrypt using random salt?roundcube password plugin not updatingis it possible to create a hidden encrypted /home partition in linuxPostfix sasl login failing no mechanism foundMySQL Password Authentication with Proxy Users and Group MappingPure FTPd and MySQL, working with sha512RoundCube login to local IMAP server failingpureftpd auth using crypt sha512convert plain text passwords to sha512-crypt in dovecot + postfix's mysql mailbox tablePostfix Not Sending Or Receiving EmailsPostfix SMTP SASL Authentication with pam_mysql can't accept email addresses as usernamePostfix authentication using MySQL SHA512

Print "N NE E SE S SW W NW"

How to befriend someone who doesn't like to talk?

How much web presence should I have?

What does the homotopy coherent nerve do to spaces of enriched functors?

What is the proper event in Extended Events to track stored procedure executions?

What's the difference between DHCP and NAT? Are they mutually exclusive?

Do Veracrypt encrypted volumes have any kind of brute force protection?

If the pressure inside and outside a balloon balance, then why does air leave when it pops?

Why would a home insurer offer a discount based on credit score?

Is all-caps blackletter no longer taboo?

What class is best to play when a level behind the rest of the party?

What exactly "triggers an additional time" in the interaction between Afterlife and Teysa Karlov?

What does "lit." mean in boiling point or melting point specification?

In Pandemic, why take the extra step of eradicating a disease after you've cured it?

Why did the World Bank set the global poverty line at $1.90?

What did the 8086 (and 8088) do upon encountering an illegal instruction?

Are the guests in Westworld forbidden to tell the hosts that they are robots?

ASCII Meme Arrow Generator

Forgot passport for Alaska cruise (Anchorage to Vancouver)

What is this Amiga 2000 mod?

What does this line mean in Zelazny's The Courts of Chaos?

Quasar Redshifts

Grandpa has another non math question

In American Politics, why is the Justice Department under the President?



Howto setup roundcube password plugin with sql driver and mysql encrypt using random salt?


roundcube password plugin not updatingis it possible to create a hidden encrypted /home partition in linuxPostfix sasl login failing no mechanism foundMySQL Password Authentication with Proxy Users and Group MappingPure FTPd and MySQL, working with sha512RoundCube login to local IMAP server failingpureftpd auth using crypt sha512convert plain text passwords to sha512-crypt in dovecot + postfix's mysql mailbox tablePostfix Not Sending Or Receiving EmailsPostfix SMTP SASL Authentication with pam_mysql can't accept email addresses as usernamePostfix authentication using MySQL SHA512






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








5















I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
I use a mysql database maildb with a table users with two fileds id='user@domain.com' and crypt='salted_md5_hash'. Password is updated with a query like this:



UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = 'user@domain.tld';


Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install



Howto setup roundcube password plugin to work with the above installation?










share|improve this question




























    5















    I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
    I use a mysql database maildb with a table users with two fileds id='user@domain.com' and crypt='salted_md5_hash'. Password is updated with a query like this:



    UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = 'user@domain.tld';


    Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install



    Howto setup roundcube password plugin to work with the above installation?










    share|improve this question
























      5












      5








      5


      3






      I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
      I use a mysql database maildb with a table users with two fileds id='user@domain.com' and crypt='salted_md5_hash'. Password is updated with a query like this:



      UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = 'user@domain.tld';


      Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install



      Howto setup roundcube password plugin to work with the above installation?










      share|improve this question














      I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
      I use a mysql database maildb with a table users with two fileds id='user@domain.com' and crypt='salted_md5_hash'. Password is updated with a query like this:



      UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = 'user@domain.tld';


      Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install



      Howto setup roundcube password plugin to work with the above installation?







      linux mysql php roundcube






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 13 '14 at 17:00









      rdarda

      1,6171817




      1,6171817




















          1 Answer
          1






          active

          oldest

          votes


















          8














          Edit roundcube main config.inc.php and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:



          // List of active plugins (in plugins/ directory)
          $config['plugins'] = array('password');


          You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'



          cd into .../roundcube_www_root/plugins/password/ and create config.inc.php



          # cp config.inc.php.dist config.inc.php
          # vi config.inc.php


          Edit the following lines in the password plugin's config.inc.php:



          <?php

          $config['password_driver'] = 'sql';
          $config['password_confirm_current'] = true;
          $config['password_minimum_length'] = 8;
          $config['password_require_nonalpha'] = false;
          $config['password_log'] = false;
          $config['password_login_exceptions'] = null;
          // If the server is accessed via fqdn, replace localhost by the fqdn:
          $config['password_hosts'] = array('127.0.0.1');
          $config['password_force_save'] = true;

          // SQL Driver options
          $config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';

          // SQL Update Query with encrypted password using random 8 character salt
          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';

          ...


          To use SHA-512 password hashes instead of SHA-256, set the $id$ to $6$ (see also man 3 crypt):



          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';


          See .../plugins/password/README and .../plugins/password/config.inc.php.dist for more info.



          Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:



          # mysql -u root -p
          mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
          mysql > FLUSH PRIVILEGES;
          mysql > quit
          #


          That's it. If you encounter problems, tail the roundcube error log:



          # tail -f ../../logs/error





          share|improve this answer




















          • 1





            I think array(password) should be array('password').

            – Andrew Schulman
            Feb 13 '14 at 17:09











          • OK, thanks, I corrected it. However, both variants seem to work fine.

            – rda
            Feb 13 '14 at 17:16











          • Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts $config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com'); which doesn't work. Upon switching to $config['password_hosts'] = array('localhost'); as per above the password Setting option appeared.

            – Brandon Coder
            Mar 29 '15 at 2:39











          • I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!

            – Brandon Coder
            Mar 29 '15 at 18:48











          • I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.

            – Terry Carter
            Feb 29 '16 at 19:13











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "2"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f575389%2fhowto-setup-roundcube-password-plugin-with-sql-driver-and-mysql-encrypt-using-ra%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          8














          Edit roundcube main config.inc.php and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:



          // List of active plugins (in plugins/ directory)
          $config['plugins'] = array('password');


          You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'



          cd into .../roundcube_www_root/plugins/password/ and create config.inc.php



          # cp config.inc.php.dist config.inc.php
          # vi config.inc.php


          Edit the following lines in the password plugin's config.inc.php:



          <?php

          $config['password_driver'] = 'sql';
          $config['password_confirm_current'] = true;
          $config['password_minimum_length'] = 8;
          $config['password_require_nonalpha'] = false;
          $config['password_log'] = false;
          $config['password_login_exceptions'] = null;
          // If the server is accessed via fqdn, replace localhost by the fqdn:
          $config['password_hosts'] = array('127.0.0.1');
          $config['password_force_save'] = true;

          // SQL Driver options
          $config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';

          // SQL Update Query with encrypted password using random 8 character salt
          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';

          ...


          To use SHA-512 password hashes instead of SHA-256, set the $id$ to $6$ (see also man 3 crypt):



          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';


          See .../plugins/password/README and .../plugins/password/config.inc.php.dist for more info.



          Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:



          # mysql -u root -p
          mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
          mysql > FLUSH PRIVILEGES;
          mysql > quit
          #


          That's it. If you encounter problems, tail the roundcube error log:



          # tail -f ../../logs/error





          share|improve this answer




















          • 1





            I think array(password) should be array('password').

            – Andrew Schulman
            Feb 13 '14 at 17:09











          • OK, thanks, I corrected it. However, both variants seem to work fine.

            – rda
            Feb 13 '14 at 17:16











          • Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts $config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com'); which doesn't work. Upon switching to $config['password_hosts'] = array('localhost'); as per above the password Setting option appeared.

            – Brandon Coder
            Mar 29 '15 at 2:39











          • I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!

            – Brandon Coder
            Mar 29 '15 at 18:48











          • I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.

            – Terry Carter
            Feb 29 '16 at 19:13















          8














          Edit roundcube main config.inc.php and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:



          // List of active plugins (in plugins/ directory)
          $config['plugins'] = array('password');


          You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'



          cd into .../roundcube_www_root/plugins/password/ and create config.inc.php



          # cp config.inc.php.dist config.inc.php
          # vi config.inc.php


          Edit the following lines in the password plugin's config.inc.php:



          <?php

          $config['password_driver'] = 'sql';
          $config['password_confirm_current'] = true;
          $config['password_minimum_length'] = 8;
          $config['password_require_nonalpha'] = false;
          $config['password_log'] = false;
          $config['password_login_exceptions'] = null;
          // If the server is accessed via fqdn, replace localhost by the fqdn:
          $config['password_hosts'] = array('127.0.0.1');
          $config['password_force_save'] = true;

          // SQL Driver options
          $config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';

          // SQL Update Query with encrypted password using random 8 character salt
          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';

          ...


          To use SHA-512 password hashes instead of SHA-256, set the $id$ to $6$ (see also man 3 crypt):



          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';


          See .../plugins/password/README and .../plugins/password/config.inc.php.dist for more info.



          Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:



          # mysql -u root -p
          mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
          mysql > FLUSH PRIVILEGES;
          mysql > quit
          #


          That's it. If you encounter problems, tail the roundcube error log:



          # tail -f ../../logs/error





          share|improve this answer




















          • 1





            I think array(password) should be array('password').

            – Andrew Schulman
            Feb 13 '14 at 17:09











          • OK, thanks, I corrected it. However, both variants seem to work fine.

            – rda
            Feb 13 '14 at 17:16











          • Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts $config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com'); which doesn't work. Upon switching to $config['password_hosts'] = array('localhost'); as per above the password Setting option appeared.

            – Brandon Coder
            Mar 29 '15 at 2:39











          • I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!

            – Brandon Coder
            Mar 29 '15 at 18:48











          • I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.

            – Terry Carter
            Feb 29 '16 at 19:13













          8












          8








          8







          Edit roundcube main config.inc.php and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:



          // List of active plugins (in plugins/ directory)
          $config['plugins'] = array('password');


          You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'



          cd into .../roundcube_www_root/plugins/password/ and create config.inc.php



          # cp config.inc.php.dist config.inc.php
          # vi config.inc.php


          Edit the following lines in the password plugin's config.inc.php:



          <?php

          $config['password_driver'] = 'sql';
          $config['password_confirm_current'] = true;
          $config['password_minimum_length'] = 8;
          $config['password_require_nonalpha'] = false;
          $config['password_log'] = false;
          $config['password_login_exceptions'] = null;
          // If the server is accessed via fqdn, replace localhost by the fqdn:
          $config['password_hosts'] = array('127.0.0.1');
          $config['password_force_save'] = true;

          // SQL Driver options
          $config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';

          // SQL Update Query with encrypted password using random 8 character salt
          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';

          ...


          To use SHA-512 password hashes instead of SHA-256, set the $id$ to $6$ (see also man 3 crypt):



          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';


          See .../plugins/password/README and .../plugins/password/config.inc.php.dist for more info.



          Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:



          # mysql -u root -p
          mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
          mysql > FLUSH PRIVILEGES;
          mysql > quit
          #


          That's it. If you encounter problems, tail the roundcube error log:



          # tail -f ../../logs/error





          share|improve this answer















          Edit roundcube main config.inc.php and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:



          // List of active plugins (in plugins/ directory)
          $config['plugins'] = array('password');


          You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'



          cd into .../roundcube_www_root/plugins/password/ and create config.inc.php



          # cp config.inc.php.dist config.inc.php
          # vi config.inc.php


          Edit the following lines in the password plugin's config.inc.php:



          <?php

          $config['password_driver'] = 'sql';
          $config['password_confirm_current'] = true;
          $config['password_minimum_length'] = 8;
          $config['password_require_nonalpha'] = false;
          $config['password_log'] = false;
          $config['password_login_exceptions'] = null;
          // If the server is accessed via fqdn, replace localhost by the fqdn:
          $config['password_hosts'] = array('127.0.0.1');
          $config['password_force_save'] = true;

          // SQL Driver options
          $config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';

          // SQL Update Query with encrypted password using random 8 character salt
          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';

          ...


          To use SHA-512 password hashes instead of SHA-256, set the $id$ to $6$ (see also man 3 crypt):



          $config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';


          See .../plugins/password/README and .../plugins/password/config.inc.php.dist for more info.



          Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:



          # mysql -u root -p
          mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
          mysql > FLUSH PRIVILEGES;
          mysql > quit
          #


          That's it. If you encounter problems, tail the roundcube error log:



          # tail -f ../../logs/error






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited May 28 at 6:05

























          answered Feb 13 '14 at 17:00









          rdarda

          1,6171817




          1,6171817







          • 1





            I think array(password) should be array('password').

            – Andrew Schulman
            Feb 13 '14 at 17:09











          • OK, thanks, I corrected it. However, both variants seem to work fine.

            – rda
            Feb 13 '14 at 17:16











          • Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts $config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com'); which doesn't work. Upon switching to $config['password_hosts'] = array('localhost'); as per above the password Setting option appeared.

            – Brandon Coder
            Mar 29 '15 at 2:39











          • I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!

            – Brandon Coder
            Mar 29 '15 at 18:48











          • I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.

            – Terry Carter
            Feb 29 '16 at 19:13












          • 1





            I think array(password) should be array('password').

            – Andrew Schulman
            Feb 13 '14 at 17:09











          • OK, thanks, I corrected it. However, both variants seem to work fine.

            – rda
            Feb 13 '14 at 17:16











          • Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts $config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com'); which doesn't work. Upon switching to $config['password_hosts'] = array('localhost'); as per above the password Setting option appeared.

            – Brandon Coder
            Mar 29 '15 at 2:39











          • I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!

            – Brandon Coder
            Mar 29 '15 at 18:48











          • I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.

            – Terry Carter
            Feb 29 '16 at 19:13







          1




          1





          I think array(password) should be array('password').

          – Andrew Schulman
          Feb 13 '14 at 17:09





          I think array(password) should be array('password').

          – Andrew Schulman
          Feb 13 '14 at 17:09













          OK, thanks, I corrected it. However, both variants seem to work fine.

          – rda
          Feb 13 '14 at 17:16





          OK, thanks, I corrected it. However, both variants seem to work fine.

          – rda
          Feb 13 '14 at 17:16













          Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts $config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com'); which doesn't work. Upon switching to $config['password_hosts'] = array('localhost'); as per above the password Setting option appeared.

          – Brandon Coder
          Mar 29 '15 at 2:39





          Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts $config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com'); which doesn't work. Upon switching to $config['password_hosts'] = array('localhost'); as per above the password Setting option appeared.

          – Brandon Coder
          Mar 29 '15 at 2:39













          I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!

          – Brandon Coder
          Mar 29 '15 at 18:48





          I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!

          – Brandon Coder
          Mar 29 '15 at 18:48













          I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.

          – Terry Carter
          Feb 29 '16 at 19:13





          I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.

          – Terry Carter
          Feb 29 '16 at 19:13

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Server Fault!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f575389%2fhowto-setup-roundcube-password-plugin-with-sql-driver-and-mysql-encrypt-using-ra%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

          Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

          What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company