Top Menu

Jump to content
Home
    Modules
      • Projects
      • Activity
      • Work packages
      • Gantt charts
      • Calendars
      • Team planners
      • Boards
      • News
    • Getting started
    • Introduction video
      Welcome to OpenProject Community
      Get a quick overview of project management and team collaboration with OpenProject. You can restart this video from the help menu.

    • Help and support
    • Upgrade to Enterprise edition
    • User guides
    • Videos
    • Shortcuts
    • Community forum
    • Enterprise support

    • Additional resources
    • Data privacy and security policy
    • Digital accessibility (DE)
    • OpenProject website
    • Security alerts / Newsletter
    • OpenProject blog
    • Release notes
    • Report a bug
    • Development roadmap
    • Add and edit translations
    • API documentation
  • Sign in
      Forgot your password?

      or sign in with your existing account

      Google

Side Menu

  • Overview
  • Activity
    Activity
  • Roadmap
  • Work packages
    Work packages
  • Gantt charts
    Gantt charts
  • Calendars
    Calendars
  • Team planners
    Team planners
  • Boards
    Boards
  • News
  • Forums

Content

Support Installation & Updates
  1. OpenProject
  2. Forums
  3. Support Installation & Updates
  4. Problems with SMTP settings

Problems with SMTP settings

Added by Marcel Almeida almost 9 years ago

My Open Project image (docker installation / Openproject’s version: 5.0.19) don’t send any e-mail notifications…
I’ve just found an error after run this command:

docker run -d openproject -e EMAIL_DELIVERY_METHOD=smtp -e SMTP_ADDRESS=mysmtpserver.com.br -e SMTP_PORT=587 -e SMTP_DOMAIN=my_domain.com.br -e SMTP_AUTHENTICATION=pmo -e SMTP_ENABLE_STARTTLS_AUTO=true -e SMTP_USER_NAME=“pmo@my_domain.com.br” -e SMTP_PASSWORD=“my_password”
Unable to find image ‘openproject:latest’ locally
Pulling repository docker.io/library/openproject
docker: Error: image library/openproject not found.
See ‘docker run —help’.

When I type the command “docker images”, my openproject image is there:

[root@pmo ~]# docker images

REPOSITORY TAG IMAGE ID CREATED SIZE
openproject/community 5.0 dadbb8d13ca1 6 days ago 2.3 GB

Running the command “journalctl -xe”, I can see this:

Jun 16 16:20:13 pmo.my_owndomain.com.br sshd24175: pam_unix(sshd:session): session opened for user root by (uid=0)
Jun 16 16:27:25 pmo.my_owndomain.com.br docker2738: time=“2016-06-16T16:27:25.720742585-03:00” level=error msg=“Handler for POST /v1.23/containers/create returned error: No such image: openproject:latest”
Jun 16 16:27:32 pmo.my_owndomain.com.br docker2738: time=“2016-06-16T16:27:32.728538180-03:00” level=error msg=“Attempting next endpoint for pull after error: unauthorized: authentication required”
Jun 16 16:27:33 pmo.my_owndomain.com.br docker2738: time=“2016-06-16T16:27:33.735191486-03:00” level=error msg=“Not continuing with pull after error: Error: image library/openproject not found”

Has anyone here ever had this problem? How do I fix it?

Marcel Almeida.


Replies (1)

RE: Problems with SMTP settings - Added by Marcel Almeida almost 9 years ago

Hello,

I can solved this problem add at the end of command the argument “openproject/community:5.0”, like this:
docker run -d \

-e EMAIL_DELIVERY_METHOD=smtp \
-e SMTP_ADDRESS=mysmtpserver.com.br \
-e SMTP_PORT=587 \
-e SMTP_DOMAIN=my_domain.com.br \
-e SMTP_AUTHENTICATION=pmo \
-e SMTP_ENABLE_STARTTLS_AUTO=false \
-e SMTP_USER_NAME=“pmo@my_domain.com.br” \
-e SMTP_PASSWORD=“my_password” \
openproject/community:5.0

After, I restarted the openproject:

docker restart openproject

But I can’t send any notifications yet. When I trying send a test e-mail, the system returns a message error (attached).

Has anyone here that can share a solution for this problem?

Best regards,

Marcel Almeida

  • (1 - 1/1)
Loading...