public inbox for [email protected]
help / color / mirror / Atom feedError [99] reset password
8+ messages / 2 participants
[nested] [flat]
* Error [99] reset password
@ 2019-12-18 20:51 Zahid Rahman <[email protected]>
2019-12-19 04:52 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
0 siblings, 1 reply; 8+ messages in thread
From: Zahid Rahman @ 2019-12-18 20:51 UTC (permalink / raw)
To: [email protected]
I did reset my port 25 "sudo ufw allow 25"
but made no diff. Which port is expect ? Thanks.
[image: Mozilla Firefox_002.png]
Attachments:
[image/png] Mozilla Firefox_002.png (85.3K, 3-Mozilla%20Firefox_002.png)
download | view image
^ permalink raw reply [nested|flat] 8+ messages in thread
* Re: Error [99] reset password
2019-12-18 20:51 Error [99] reset password Zahid Rahman <[email protected]>
@ 2019-12-19 04:52 ` Aditya Toshniwal <[email protected]>
2019-12-19 06:23 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
0 siblings, 1 reply; 8+ messages in thread
From: Aditya Toshniwal @ 2019-12-19 04:52 UTC (permalink / raw)
To: Zahid Rahman <[email protected]>; +Cc: pgadmin-hackers <[email protected]>
Hi Zahid,
You need to configure the pgAdmin SMTP params by creating config_local.py
and changing
MAIL_SERVER = 'localhost'
MAIL_PORT = 25
MAIL_USE_SSL = False
MAIL_USE_TLS = False
MAIL_USERNAME = ''
MAIL_PASSWORD = ''
MAIL_DEBUG = False
Ref https://www.pgadmin.org/docs/pgadmin4/4.16/config_py.html for
config_local.py.
On Thu, Dec 19, 2019 at 2:21 AM Zahid Rahman <[email protected]> wrote:
> I did reset my port 25 "sudo ufw allow 25"
> but made no diff. Which port is expect ? Thanks.
> [image: Mozilla Firefox_002.png]
>
>
>
--
Thanks and Regards,
Aditya Toshniwal
pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
"Don't Complain about Heat, Plant a TREE"
Attachments:
[image/png] Mozilla Firefox_002.png (85.3K, 3-Mozilla%20Firefox_002.png)
download | view image
^ permalink raw reply [nested|flat] 8+ messages in thread
* Re: Error [99] reset password
2019-12-18 20:51 Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 04:52 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
@ 2019-12-19 06:23 ` Zahid Rahman <[email protected]>
2019-12-19 06:32 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
0 siblings, 1 reply; 8+ messages in thread
From: Zahid Rahman @ 2019-12-19 06:23 UTC (permalink / raw)
To: Aditya Toshniwal <[email protected]>; +Cc: pgadmin-hackers <[email protected]>
Hi,
created file config_local.py --> rebooted --> no change
[image: kub18 : bash — Konsole -2-_004.png]
[image: Mozilla Firefox_006.png]
On Thu, 19 Dec 2019 at 04:52, Aditya Toshniwal <
[email protected]> wrote:
> Hi Zahid,
>
> You need to configure the pgAdmin SMTP params by creating config_local.py
> and changing
>
> MAIL_SERVER = 'localhost'
> MAIL_PORT = 25
> MAIL_USE_SSL = False
> MAIL_USE_TLS = False
> MAIL_USERNAME = ''
> MAIL_PASSWORD = ''
> MAIL_DEBUG = False
>
> Ref https://www.pgadmin.org/docs/pgadmin4/4.16/config_py.html for
> config_local.py.
>
> On Thu, Dec 19, 2019 at 2:21 AM Zahid Rahman <[email protected]> wrote:
>
>> I did reset my port 25 "sudo ufw allow 25"
>> but made no diff. Which port is expect ? Thanks.
>> [image: Mozilla Firefox_002.png]
>>
>>
>>
>
> --
> Thanks and Regards,
> Aditya Toshniwal
> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
> "Don't Complain about Heat, Plant a TREE"
>
Attachments:
[image/png] Mozilla Firefox_002.png (85.3K, 3-Mozilla%20Firefox_002.png)
download | view image
[image/png] kub18 : bash — Konsole -2-_004.png (62.7K, 4-kub18%20:%20bash%20%E2%80%94%20Konsole%20-2-%E2%80%8E_004.png)
download | view image
[image/png] Mozilla Firefox_006.png (85.3K, 5-Mozilla%20Firefox_006.png)
download | view image
^ permalink raw reply [nested|flat] 8+ messages in thread
* Re: Error [99] reset password
2019-12-18 20:51 Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 04:52 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 06:23 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
@ 2019-12-19 06:32 ` Aditya Toshniwal <[email protected]>
2019-12-19 08:09 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
0 siblings, 1 reply; 8+ messages in thread
From: Aditya Toshniwal @ 2019-12-19 06:32 UTC (permalink / raw)
To: Zahid Rahman <[email protected]>; +Cc: pgadmin-hackers <[email protected]>
Hi Zahid,
You need to configure it. It will not work as it is obviously. :)
Set the mail server, username, password for the reset password mail to
trigger. Below is the example to use Gmail.
MAIL_SERVER = 'smtp.gmail.com'
MAIL_PORT = 465
MAIL_USE_SSL = True
MAIL_USERNAME = '<you email>@gmail.com'
MAIL_PASSWORD = '<your password>'
MAIL_DEBUG = False
On Thu, Dec 19, 2019 at 11:54 AM Zahid Rahman <[email protected]> wrote:
> Hi,
>
> created file config_local.py --> rebooted --> no change
> [image: kub18 : bash — Konsole -2-_004.png]
> [image: Mozilla Firefox_006.png]
>
>
>
> On Thu, 19 Dec 2019 at 04:52, Aditya Toshniwal <
> [email protected]> wrote:
>
>> Hi Zahid,
>>
>> You need to configure the pgAdmin SMTP params by creating config_local.py
>> and changing
>>
>> MAIL_SERVER = 'localhost'
>> MAIL_PORT = 25
>> MAIL_USE_SSL = False
>> MAIL_USE_TLS = False
>> MAIL_USERNAME = ''
>> MAIL_PASSWORD = ''
>> MAIL_DEBUG = False
>>
>> Ref https://www.pgadmin.org/docs/pgadmin4/4.16/config_py.html for
>> config_local.py.
>>
>> On Thu, Dec 19, 2019 at 2:21 AM Zahid Rahman <[email protected]>
>> wrote:
>>
>>> I did reset my port 25 "sudo ufw allow 25"
>>> but made no diff. Which port is expect ? Thanks.
>>> [image: Mozilla Firefox_002.png]
>>>
>>>
>>>
>>
>> --
>> Thanks and Regards,
>> Aditya Toshniwal
>> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
>> "Don't Complain about Heat, Plant a TREE"
>>
>
--
Thanks and Regards,
Aditya Toshniwal
pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
"Don't Complain about Heat, Plant a TREE"
Attachments:
[image/png] Mozilla Firefox_002.png (85.3K, 3-Mozilla%20Firefox_002.png)
download | view image
[image/png] kub18 : bash — Konsole -2-_004.png (62.7K, 4-kub18%20:%20bash%20%E2%80%94%20Konsole%20-2-%E2%80%8E_004.png)
download | view image
[image/png] Mozilla Firefox_006.png (85.3K, 5-Mozilla%20Firefox_006.png)
download | view image
^ permalink raw reply [nested|flat] 8+ messages in thread
* Re: Error [99] reset password
2019-12-18 20:51 Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 04:52 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 06:23 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 06:32 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
@ 2019-12-19 08:09 ` Zahid Rahman <[email protected]>
2019-12-19 08:21 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
0 siblings, 1 reply; 8+ messages in thread
From: Zahid Rahman @ 2019-12-19 08:09 UTC (permalink / raw)
To: Aditya Toshniwal <[email protected]>; +Cc: pgadmin-hackers <[email protected]>
I set the password to PGADMIN_DEFAULT_PASSWORD *and* my gmail account
password in config_local.py, still same outcome.
sudo docker run -p 80:80 -e '[email protected]' -e
'PGADMIN_DEFAULT_PASSWORD=sunrise' -d dpage/pgadmin4
I also restarted docker each time I changed config_local.py
[image: kub18 : bash — Konsole_007.png]
[image: Mozilla Firefox_008.png]
On Thu, 19 Dec 2019 at 06:33, Aditya Toshniwal <
[email protected]> wrote:
> Hi Zahid,
>
> You need to configure it. It will not work as it is obviously. :)
> Set the mail server, username, password for the reset password mail to
> trigger. Below is the example to use Gmail.
>
> MAIL_SERVER = 'smtp.gmail.com'
> MAIL_PORT = 465
> MAIL_USE_SSL = True
> MAIL_USERNAME = '<you email>@gmail.com'
> MAIL_PASSWORD = '<your password>'
> MAIL_DEBUG = False
>
>
> On Thu, Dec 19, 2019 at 11:54 AM Zahid Rahman <[email protected]>
> wrote:
>
>> Hi,
>>
>> created file config_local.py --> rebooted --> no change
>> [image: kub18 : bash — Konsole -2-_004.png]
>> [image: Mozilla Firefox_006.png]
>>
>>
>>
>> On Thu, 19 Dec 2019 at 04:52, Aditya Toshniwal <
>> [email protected]> wrote:
>>
>>> Hi Zahid,
>>>
>>> You need to configure the pgAdmin SMTP params by creating
>>> config_local.py and changing
>>>
>>> MAIL_SERVER = 'localhost'
>>> MAIL_PORT = 25
>>> MAIL_USE_SSL = False
>>> MAIL_USE_TLS = False
>>> MAIL_USERNAME = ''
>>> MAIL_PASSWORD = ''
>>> MAIL_DEBUG = False
>>>
>>> Ref https://www.pgadmin.org/docs/pgadmin4/4.16/config_py.html for
>>> config_local.py.
>>>
>>> On Thu, Dec 19, 2019 at 2:21 AM Zahid Rahman <[email protected]>
>>> wrote:
>>>
>>>> I did reset my port 25 "sudo ufw allow 25"
>>>> but made no diff. Which port is expect ? Thanks.
>>>> [image: Mozilla Firefox_002.png]
>>>>
>>>>
>>>>
>>>
>>> --
>>> Thanks and Regards,
>>> Aditya Toshniwal
>>> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
>>> "Don't Complain about Heat, Plant a TREE"
>>>
>>
>
> --
> Thanks and Regards,
> Aditya Toshniwal
> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
> "Don't Complain about Heat, Plant a TREE"
>
Attachments:
[image/png] Mozilla Firefox_002.png (85.3K, 3-Mozilla%20Firefox_002.png)
download | view image
[image/png] kub18 : bash — Konsole -2-_004.png (62.7K, 4-kub18%20:%20bash%20%E2%80%94%20Konsole%20-2-%E2%80%8E_004.png)
download | view image
[image/png] Mozilla Firefox_006.png (85.3K, 5-Mozilla%20Firefox_006.png)
download | view image
[image/png] kub18 : bash — Konsole_007.png (79.0K, 6-kub18%20:%20bash%20%E2%80%94%20Konsole_007.png)
download | view image
[image/png] Mozilla Firefox_008.png (88.4K, 7-Mozilla%20Firefox_008.png)
download | view image
^ permalink raw reply [nested|flat] 8+ messages in thread
* Re: Error [99] reset password
2019-12-18 20:51 Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 04:52 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 06:23 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 06:32 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 08:09 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
@ 2019-12-19 08:21 ` Aditya Toshniwal <[email protected]>
2019-12-19 11:19 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
0 siblings, 1 reply; 8+ messages in thread
From: Aditya Toshniwal @ 2019-12-19 08:21 UTC (permalink / raw)
To: Zahid Rahman <[email protected]>; +Cc: pgadmin-hackers <[email protected]>
Hi Zahid,
Google has some way to generate app password which you can use for SMTP.
Also check it your internet is working.
On Thu, Dec 19, 2019, 13:39 Zahid Rahman <[email protected]> wrote:
> I set the password to PGADMIN_DEFAULT_PASSWORD *and* my gmail account
> password in config_local.py, still same outcome.
> sudo docker run -p 80:80 -e '[email protected]'
> -e 'PGADMIN_DEFAULT_PASSWORD=sunrise' -d dpage/pgadmin4
> I also restarted docker each time I changed config_local.py
>
> [image: kub18 : bash — Konsole_007.png]
> [image: Mozilla Firefox_008.png]
>
> On Thu, 19 Dec 2019 at 06:33, Aditya Toshniwal <
> [email protected]> wrote:
>
>> Hi Zahid,
>>
>> You need to configure it. It will not work as it is obviously. :)
>> Set the mail server, username, password for the reset password mail to
>> trigger. Below is the example to use Gmail.
>>
>> MAIL_SERVER = 'smtp.gmail.com'
>> MAIL_PORT = 465
>> MAIL_USE_SSL = True
>> MAIL_USERNAME = '<you email>@gmail.com'
>> MAIL_PASSWORD = '<your password>'
>> MAIL_DEBUG = False
>>
>>
>> On Thu, Dec 19, 2019 at 11:54 AM Zahid Rahman <[email protected]>
>> wrote:
>>
>>> Hi,
>>>
>>> created file config_local.py --> rebooted --> no change
>>> [image: kub18 : bash — Konsole -2-_004.png]
>>> [image: Mozilla Firefox_006.png]
>>>
>>>
>>>
>>> On Thu, 19 Dec 2019 at 04:52, Aditya Toshniwal <
>>> [email protected]> wrote:
>>>
>>>> Hi Zahid,
>>>>
>>>> You need to configure the pgAdmin SMTP params by creating
>>>> config_local.py and changing
>>>>
>>>> MAIL_SERVER = 'localhost'
>>>> MAIL_PORT = 25
>>>> MAIL_USE_SSL = False
>>>> MAIL_USE_TLS = False
>>>> MAIL_USERNAME = ''
>>>> MAIL_PASSWORD = ''
>>>> MAIL_DEBUG = False
>>>>
>>>> Ref https://www.pgadmin.org/docs/pgadmin4/4.16/config_py.html for
>>>> config_local.py.
>>>>
>>>> On Thu, Dec 19, 2019 at 2:21 AM Zahid Rahman <[email protected]>
>>>> wrote:
>>>>
>>>>> I did reset my port 25 "sudo ufw allow 25"
>>>>> but made no diff. Which port is expect ? Thanks.
>>>>> [image: Mozilla Firefox_002.png]
>>>>>
>>>>>
>>>>>
>>>>
>>>> --
>>>> Thanks and Regards,
>>>> Aditya Toshniwal
>>>> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
>>>> "Don't Complain about Heat, Plant a TREE"
>>>>
>>>
>>
>> --
>> Thanks and Regards,
>> Aditya Toshniwal
>> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
>> "Don't Complain about Heat, Plant a TREE"
>>
>
Attachments:
[image/png] Mozilla Firefox_002.png (85.3K, 3-Mozilla%20Firefox_002.png)
download | view image
[image/png] kub18 : bash — Konsole -2-_004.png (62.7K, 4-kub18%20:%20bash%20%E2%80%94%20Konsole%20-2-%E2%80%8E_004.png)
download | view image
[image/png] Mozilla Firefox_006.png (85.3K, 5-Mozilla%20Firefox_006.png)
download | view image
[image/png] kub18 : bash — Konsole_007.png (79.0K, 6-kub18%20:%20bash%20%E2%80%94%20Konsole_007.png)
download | view image
[image/png] Mozilla Firefox_008.png (88.4K, 7-Mozilla%20Firefox_008.png)
download | view image
^ permalink raw reply [nested|flat] 8+ messages in thread
* Re: Error [99] reset password
2019-12-18 20:51 Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 04:52 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 06:23 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 06:32 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 08:09 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 08:21 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
@ 2019-12-19 11:19 ` Zahid Rahman <[email protected]>
2019-12-19 14:31 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
0 siblings, 1 reply; 8+ messages in thread
From: Zahid Rahman @ 2019-12-19 11:19 UTC (permalink / raw)
To: Aditya Toshniwal <[email protected]>; +Cc: pgadmin-hackers <[email protected]>
Is this the expected page ?
[image: Mozilla Firefox_011.png]
On Thu, 19 Dec 2019 at 08:21, Aditya Toshniwal <
[email protected]> wrote:
> Hi Zahid,
>
> Google has some way to generate app password which you can use for SMTP.
> Also check it your internet is working.
>
> On Thu, Dec 19, 2019, 13:39 Zahid Rahman <[email protected]> wrote:
>
>> I set the password to PGADMIN_DEFAULT_PASSWORD *and* my gmail account
>> password in config_local.py, still same outcome.
>> sudo docker run -p 80:80 -e '[email protected]'
>> -e 'PGADMIN_DEFAULT_PASSWORD=sunrise' -d dpage/pgadmin4
>> I also restarted docker each time I changed config_local.py
>>
>> [image: kub18 : bash — Konsole_007.png]
>> [image: Mozilla Firefox_008.png]
>>
>> On Thu, 19 Dec 2019 at 06:33, Aditya Toshniwal <
>> [email protected]> wrote:
>>
>>> Hi Zahid,
>>>
>>> You need to configure it. It will not work as it is obviously. :)
>>> Set the mail server, username, password for the reset password mail to
>>> trigger. Below is the example to use Gmail.
>>>
>>> MAIL_SERVER = 'smtp.gmail.com'
>>> MAIL_PORT = 465
>>> MAIL_USE_SSL = True
>>> MAIL_USERNAME = '<you email>@gmail.com'
>>> MAIL_PASSWORD = '<your password>'
>>> MAIL_DEBUG = False
>>>
>>>
>>> On Thu, Dec 19, 2019 at 11:54 AM Zahid Rahman <[email protected]>
>>> wrote:
>>>
>>>> Hi,
>>>>
>>>> created file config_local.py --> rebooted --> no change
>>>> [image: kub18 : bash — Konsole -2-_004.png]
>>>> [image: Mozilla Firefox_006.png]
>>>>
>>>>
>>>>
>>>> On Thu, 19 Dec 2019 at 04:52, Aditya Toshniwal <
>>>> [email protected]> wrote:
>>>>
>>>>> Hi Zahid,
>>>>>
>>>>> You need to configure the pgAdmin SMTP params by creating
>>>>> config_local.py and changing
>>>>>
>>>>> MAIL_SERVER = 'localhost'
>>>>> MAIL_PORT = 25
>>>>> MAIL_USE_SSL = False
>>>>> MAIL_USE_TLS = False
>>>>> MAIL_USERNAME = ''
>>>>> MAIL_PASSWORD = ''
>>>>> MAIL_DEBUG = False
>>>>>
>>>>> Ref https://www.pgadmin.org/docs/pgadmin4/4.16/config_py.html for
>>>>> config_local.py.
>>>>>
>>>>> On Thu, Dec 19, 2019 at 2:21 AM Zahid Rahman <[email protected]>
>>>>> wrote:
>>>>>
>>>>>> I did reset my port 25 "sudo ufw allow 25"
>>>>>> but made no diff. Which port is expect ? Thanks.
>>>>>> [image: Mozilla Firefox_002.png]
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>> --
>>>>> Thanks and Regards,
>>>>> Aditya Toshniwal
>>>>> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
>>>>> "Don't Complain about Heat, Plant a TREE"
>>>>>
>>>>
>>>
>>> --
>>> Thanks and Regards,
>>> Aditya Toshniwal
>>> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
>>> "Don't Complain about Heat, Plant a TREE"
>>>
>>
Attachments:
[image/png] Mozilla Firefox_002.png (85.3K, 3-Mozilla%20Firefox_002.png)
download | view image
[image/png] kub18 : bash — Konsole -2-_004.png (62.7K, 4-kub18%20:%20bash%20%E2%80%94%20Konsole%20-2-%E2%80%8E_004.png)
download | view image
[image/png] Mozilla Firefox_006.png (85.3K, 5-Mozilla%20Firefox_006.png)
download | view image
[image/png] kub18 : bash — Konsole_007.png (79.0K, 6-kub18%20:%20bash%20%E2%80%94%20Konsole_007.png)
download | view image
[image/png] Mozilla Firefox_008.png (88.4K, 7-Mozilla%20Firefox_008.png)
download | view image
[image/png] Mozilla Firefox_011.png (58.5K, 8-Mozilla%20Firefox_011.png)
download | view image
^ permalink raw reply [nested|flat] 8+ messages in thread
* Re: Error [99] reset password
2019-12-18 20:51 Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 04:52 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 06:23 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 06:32 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 08:09 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 08:21 ` Re: Error [99] reset password Aditya Toshniwal <[email protected]>
2019-12-19 11:19 ` Re: Error [99] reset password Zahid Rahman <[email protected]>
@ 2019-12-19 14:31 ` Zahid Rahman <[email protected]>
0 siblings, 0 replies; 8+ messages in thread
From: Zahid Rahman @ 2019-12-19 14:31 UTC (permalink / raw)
To: Aditya Toshniwal <[email protected]>; +Cc: pgadmin-hackers <[email protected]>
This page is displaying strange and inconsistent behaviour.
when I choose the option recover password the reset_password page doesn't
displaying in reasonable time but 10 minutes later. Two images of one page
attached below as you see is different than previous image. This
reset_password page only appeared after I rebooted making no changes to
PGADMIN4 It needs investigating.
[image: Mozilla Firefox_013.png]
[image: password_reset1.png]
On Thu, 19 Dec 2019 at 11:19, Zahid Rahman <[email protected]> wrote:
> Is this the expected page ?
> [image: Mozilla Firefox_011.png]
>
> On Thu, 19 Dec 2019 at 08:21, Aditya Toshniwal <
> [email protected]> wrote:
>
>> Hi Zahid,
>>
>> Google has some way to generate app password which you can use for SMTP.
>> Also check it your internet is working.
>>
>> On Thu, Dec 19, 2019, 13:39 Zahid Rahman <[email protected]> wrote:
>>
>>> I set the password to PGADMIN_DEFAULT_PASSWORD *and* my gmail account
>>> password in config_local.py, still same outcome.
>>> sudo docker run -p 80:80 -e '[email protected]'
>>> -e 'PGADMIN_DEFAULT_PASSWORD=sunrise' -d dpage/pgadmin4
>>> I also restarted docker each time I changed config_local.py
>>>
>>> [image: kub18 : bash — Konsole_007.png]
>>> [image: Mozilla Firefox_008.png]
>>>
>>> On Thu, 19 Dec 2019 at 06:33, Aditya Toshniwal <
>>> [email protected]> wrote:
>>>
>>>> Hi Zahid,
>>>>
>>>> You need to configure it. It will not work as it is obviously. :)
>>>> Set the mail server, username, password for the reset password mail to
>>>> trigger. Below is the example to use Gmail.
>>>>
>>>> MAIL_SERVER = 'smtp.gmail.com'
>>>> MAIL_PORT = 465
>>>> MAIL_USE_SSL = True
>>>> MAIL_USERNAME = '<you email>@gmail.com'
>>>> MAIL_PASSWORD = '<your password>'
>>>> MAIL_DEBUG = False
>>>>
>>>>
>>>> On Thu, Dec 19, 2019 at 11:54 AM Zahid Rahman <[email protected]>
>>>> wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> created file config_local.py --> rebooted --> no change
>>>>> [image: kub18 : bash — Konsole -2-_004.png]
>>>>> [image: Mozilla Firefox_006.png]
>>>>>
>>>>>
>>>>>
>>>>> On Thu, 19 Dec 2019 at 04:52, Aditya Toshniwal <
>>>>> [email protected]> wrote:
>>>>>
>>>>>> Hi Zahid,
>>>>>>
>>>>>> You need to configure the pgAdmin SMTP params by creating
>>>>>> config_local.py and changing
>>>>>>
>>>>>> MAIL_SERVER = 'localhost'
>>>>>> MAIL_PORT = 25
>>>>>> MAIL_USE_SSL = False
>>>>>> MAIL_USE_TLS = False
>>>>>> MAIL_USERNAME = ''
>>>>>> MAIL_PASSWORD = ''
>>>>>> MAIL_DEBUG = False
>>>>>>
>>>>>> Ref https://www.pgadmin.org/docs/pgadmin4/4.16/config_py.html for
>>>>>> config_local.py.
>>>>>>
>>>>>> On Thu, Dec 19, 2019 at 2:21 AM Zahid Rahman <[email protected]>
>>>>>> wrote:
>>>>>>
>>>>>>> I did reset my port 25 "sudo ufw allow 25"
>>>>>>> but made no diff. Which port is expect ? Thanks.
>>>>>>> [image: Mozilla Firefox_002.png]
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>> --
>>>>>> Thanks and Regards,
>>>>>> Aditya Toshniwal
>>>>>> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
>>>>>> "Don't Complain about Heat, Plant a TREE"
>>>>>>
>>>>>
>>>>
>>>> --
>>>> Thanks and Regards,
>>>> Aditya Toshniwal
>>>> pgAdmin Hacker | Sr. Software Engineer | EnterpriseDB India | Pune
>>>> "Don't Complain about Heat, Plant a TREE"
>>>>
>>>
Attachments:
[image/png] Mozilla Firefox_002.png (85.3K, 3-Mozilla%20Firefox_002.png)
download | view image
[image/png] kub18 : bash — Konsole -2-_004.png (62.7K, 4-kub18%20:%20bash%20%E2%80%94%20Konsole%20-2-%E2%80%8E_004.png)
download | view image
[image/png] Mozilla Firefox_006.png (85.3K, 5-Mozilla%20Firefox_006.png)
download | view image
[image/png] kub18 : bash — Konsole_007.png (79.0K, 6-kub18%20:%20bash%20%E2%80%94%20Konsole_007.png)
download | view image
[image/png] Mozilla Firefox_008.png (88.4K, 7-Mozilla%20Firefox_008.png)
download | view image
[image/png] Mozilla Firefox_011.png (58.5K, 8-Mozilla%20Firefox_011.png)
download | view image
[image/png] Mozilla Firefox_013.png (103.1K, 9-Mozilla%20Firefox_013.png)
download | view image
[image/png] password_reset1.png (94.5K, 10-password_reset1.png)
download | view image
^ permalink raw reply [nested|flat] 8+ messages in thread
end of thread, other threads:[~2019-12-19 14:31 UTC | newest]
Thread overview: 8+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18 20:51 Error [99] reset password Zahid Rahman <[email protected]>
2019-12-19 04:52 ` Aditya Toshniwal <[email protected]>
2019-12-19 06:23 ` Zahid Rahman <[email protected]>
2019-12-19 06:32 ` Aditya Toshniwal <[email protected]>
2019-12-19 08:09 ` Zahid Rahman <[email protected]>
2019-12-19 08:21 ` Aditya Toshniwal <[email protected]>
2019-12-19 11:19 ` Zahid Rahman <[email protected]>
2019-12-19 14:31 ` Zahid Rahman <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox