🔴 January 2024 Alert: Forum support inactive!
New forum registration are currently closed.
Use GitHub discussions
.

    UVdesk

    • Login
    • Search
    • Recent
    1. Home
    2. WisTex
    W
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 6
    • Best 0
    • Controversial 0
    • Groups 0

    WisTex

    @WisTex

    5
    Reputation
    4
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    WisTex Unfollow Follow

    Latest posts made by WisTex

    • RE: Mailbox Not Found - cPanel Email IMAP

      @vipin said in Mailbox Not Found - cPanel Email IMAP:

      As i can see in the above settings, your email address is support@example.info & you are trying with test@example.com.

      Unfortunately, that is not the case. I did not want to reveal my real email address on a public forum, so those are not the email addresses I am using.

      I have tried multiple email addresses on multiple servers, and I just can't get it to work.

      posted in Technical Help
      W
      WisTex
    • RE: Mailbox Not Found - cPanel Email IMAP

      @peopleinside said in Mailbox Not Found - cPanel Email IMAP:

      Be sure to run a PHP version greater than PHP 7.4 (that will be soon deprecated).
      How you installed UVdesk? GitHub, SSH, Composer?
      In the Dashboard footer of UVdesk do you see the version of UVdesk?

      I had issues installing UVdesk on PHP 8.1. so I downgraded that particular subdomain to 7.4. I would like to resolve that issue next, but right now I need to concentrate on fixing the email issue.

      I installed UVdesk using Softalicious in cPanel.

      I am using V -1.1.0 according to the footer.

      posted in Technical Help
      W
      WisTex
    • RE: Mailbox Not Found - cPanel Email IMAP

      @peopleinside Clearing the cache does not change the Email Settings page, but the actual configuration file has the correct data:

      /home/accountname/public_html/desk/config/packages/uvdesk.yaml

      uvdesk:
          site_url: 'desk.example.info/public'
          upload_manager:
              id: Webkul\UVDesk\CoreFrameworkBundle\FileSystem\UploadManagers\Localhost
          
          support_email:
              id: support@example.info
              name: UVDesk Community
              mailer_id: support@example.info
      

      /home/accountname/public_html/desk/config/packages/swiftmailer.yaml

      swiftmailer:
          default_mailer: support@example.info
          mailers:
              support@example.info:
                  transport: smtp
                  username: support@example.info
                  password: notmyrealpassword
                  host: mail.example.info
                  port: 465
                  encryption: ssl
                  auth_mode: login
                  sender_address: support@example.info
                  delivery_addresses: ['']
                  disable_delivery: false
      

      /home/accountname/public_html/desk/config/packages/uvdesk_mailbox.yaml

      # Configure your mailboxes here
          mailboxes:
              support@example.info:
                  name: support@example.info
                  enabled: true
                  deleted: false
      
                  # [SMTP] Outgoing mail server
                  # Swiftmailer smtp mailer to use for sending emails through on behalf of this mailbox
                  smtp_server: 
                      mailer_id: support@example.info
      
                  # [IMAP] Incoming mail server
                  # IMAP configurations to use for fetching emails from mailbox
                  imap_server:
                      host: '{mail.example.info:993/imap/ssl}INBOX'
                      username: support@example.info
                      password: notmyrealpassword
      

      Also, the certificate is value:

      AutoSSL Domain Validated
      Expires on September 22, 2022. The certificate will renew via AutoSSL.
      

      I even tried {example.com:993/imap/ssl/novalidate-cert}INBOX as well.

      Do you see anything in there that is off?

      posted in Technical Help
      W
      WisTex
    • RE: Mailbox Not Found - cPanel Email IMAP

      @peopleinside said in Mailbox Not Found - cPanel Email IMAP:

      from the admin UI of your UVdesk install, what you see on settings/email/settings: do you see a correct email address or a localhost email address?

      It says the email Id is support@localhost and it refuses to let me change it to the real email address. support@localhost is not a real email address.

      And the correct swiftmailer is set. I even reset the password on the email account just to make sure that I am using the correct password. I've verified the ports.

      In settings, mailbox what host you inserted in the filed host of the desired email address?

      For the host, I have tried:
      example.com
      mail.example.com
      {example.com:993/imap/ssl}INBOX

      So far, nothing has worked.

      posted in Technical Help
      W
      WisTex
    • RE: Mailbox Not Found - cPanel Email IMAP

      @peopleinside I tried that too.

      [accountname@servername ~]$ php /home/accountname/public_html/desk/bin/console uvdesk:refresh-mailbox test@example.com
      
       1. Processing uvdesk mailbox configuration.
      
       Mailbox for email test@example.com not found.
      
      posted in Technical Help
      W
      WisTex
    • Mailbox Not Found - cPanel Email IMAP

      I am getting the error:

      [accountname@servername ~]$ php /home/accountname/public_html/desk/bin/console uvdesk:refresh-mailbox test
      
       1. Processing uvdesk mailbox configuration.
      
       Mailbox for email test not found.
      

      Mailbox settings:

      test:
                  name: Test Mailbox
                  enabled: true
                  deleted: false
      
                  # [SMTP] Outgoing mail server
                  # Swiftmailer smtp mailer to use for sending emails through on behalf of this mailbox
                  smtp_server: 
                      mailer_id: test@example.com
      
                  # [IMAP] Incoming mail server
                  # IMAP configurations to use for fetching emails from mailbox
                  imap_server:
                      host: '{example.com:993/imap/ssl}INBOX'
                      username: test@example.com
                      password: nottherealpassword
      

      This was generated from input from the form at example.com/public/en/member/settings/mailbox/update/test

      I have obviously substituted example.com for the real domain.

      Why am I getting this error? The mailbox exists. It is set up in cPanel and I am able to log into it.

      I tried changing the hostname to example.com and that does not work either.

      What are the correct settings?

      posted in Technical Help
      W
      WisTex