Skip to content

Commit

Permalink
feat(secure): change pass position
Browse files Browse the repository at this point in the history
  • Loading branch information
tikrack committed Sep 16, 2024
1 parent c053a65 commit c319c0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions config/imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@
'accounts' => [

'default' => [// account identifier
'host' => env('IMAP_HOST', 'mail.vestaydesign.com'),
'port' => env('IMAP_PORT', 993),
'host' => env('IMAP_HOST', ''),
'port' => env('IMAP_PORT', ''),
'protocol' => env('IMAP_PROTOCOL', 'imap'),
'encryption' => env('IMAP_ENCRYPTION', 'ssl'),
'validate_cert' => env('IMAP_VALIDATE_CERT', true),
'username' => env('IMAP_USERNAME', '[email protected]'),
'password' => env('IMAP_PASSWORD', '22$O-7!epgu-22$O-7!epgu-22$O-7!epgu-'),
'username' => env('IMAP_USERNAME', ''),
'password' => env('IMAP_PASSWORD', ''),
'authentication' => env('IMAP_AUTHENTICATION', null),
'proxy' => [
'socket' => null,
Expand Down

0 comments on commit c319c0d

Please sign in to comment.