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

          How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

          What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

          Why did Thanos need his ship to help him in the battle scene?Which actor plays Thanos in the Avengers mid-credits scene?Are there economic implications portrayed in comics where the buildings and cities are ruined almost daily?Old X-Men comic where team travels to alien world with a ring-like sun that needs recharging?Why does Ego need help sleeping?Is there an objective answer to who “the strongest Avenger” is?How did Banner get unstuck?Why did Thanos get hit?How did Thanos (or anyone) know the Infinity Stones would give him this power?Did Thanos leave Eitri alive for his after-sales service?In Avengers 1, why does Thanos need Loki?