Help Wanted
Closed this issue · 33 comments
@masnn You can pass the arguments through environment variables like VJ_SMTP_HOST
You can refer to https://github.com/vijos/vj4/blob/377d626536da952f409448979695b6f211b2f118/vj4/service/mailer.py#L10 for a full argument list about mailer.
500 Internal Server Error
Server got itself in trouble
[E 190211 10:58:00 base:247] System error by /register 222.240.154.116 1: SMTPConnectError('Error connecting to smtp.office365.com on port 587',)
web_1 | [E 190211 10:58:00 web_protocol:319] Error handling request
web_1 | Traceback (most recent call last):
web_1 | File "/usr/local/lib/python3.6/site-packages/aiosmtplib/smtp.py", line 81, in connect
web_1 | ssl=self.ssl)
web_1 | File "/usr/local/lib/python3.6/asyncio/base_events.py", line 809, in create_connection
web_1 | sock, protocol_factory, ssl, server_hostname)
web_1 | File "/usr/local/lib/python3.6/asyncio/base_events.py", line 835, in _create_connection_transport
web_1 | yield from waiter
web_1 | File "/usr/local/lib/python3.6/asyncio/sslproto.py", line 505, in data_received
web_1 | ssldata, appdata = self._sslpipe.feed_ssldata(data)
web_1 | File "/usr/local/lib/python3.6/asyncio/sslproto.py", line 201, in feed_ssldata
web_1 | self._sslobj.do_handshake()
web_1 | File "/usr/local/lib/python3.6/ssl.py", line 689, in do_handshake
web_1 | self._sslobj.do_handshake()
web_1 | ssl.SSLError: [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:847)
web_1 |
web_1 | During handling of the above exception, another exception occurred:
web_1 |
web_1 | Traceback (most recent call last):
web_1 | File "/usr/local/lib/python3.6/site-packages/aiohttp/web_protocol.py", line 390, in start
web_1 | resp = await self._request_handler(request)
web_1 | File "/usr/local/lib/python3.6/site-packages/aiohttp/web_app.py", line 366, in _handle
web_1 | resp = await handler(request)
web_1 | File "/app/src/vj4/handler/base.py", line 228, in __await__
web_1 | yield from super(Handler, self).__await__()
web_1 | File "/usr/local/lib/python3.6/site-packages/aiohttp/web_urldispatcher.py", line 740, in _iter
web_1 | resp = await method()
web_1 | File "/app/src/vj4/handler/base.py", line 453, in wrapped
web_1 | return await coro(self, **kwargs, **await self.request.post())
web_1 | File "/app/src/vj4/handler/base.py", line 496, in wrapped
web_1 | return await coro(self, **kwargs)
web_1 | File "/app/src/vj4/handler/user.py", line 57, in post
web_1 | url=self.reverse_url('user_register_with_code', code=rid))
web_1 | File "/app/src/vj4/handler/base.py", line 220, in send_mail
web_1 | await mailer.send_mail(mail, '{0} - Vijos'.format(translate(title)), content)
web_1 | File "/app/src/vj4/service/mailer.py", line 27, in send_mail
web_1 | async with aiosmtplib.SMTP_SSL(hostname=options.smtp_host, port=options.smtp_port) as server:
web_1 | File "/usr/local/lib/python3.6/site-packages/aiosmtplib/smtp.py", line 548, in __aenter__
web_1 | await self.connect()
web_1 | File "/usr/local/lib/python3.6/site-packages/aiosmtplib/smtp.py", line 85, in connect
web_1 | raise SMTPConnectError(message)
web_1 | aiosmtplib.errors.SMTPConnectError: Error connecting to smtp.office365.com on port 587
@masnn Oops, I took a look at codes in mailer.py. It seems that vj4 only supports SSL(port 465). Outlook only has STARTTLS(port 587) support.
Open an issue in vijos/vj4, or you can implement one yourself and pr it.
Mail problem fixed.
I've used Tencent Exmail instead
Which file?
I can't find where vj4.model.builtin.FOOTER_EXTRA_HTMLS is.
How can I change this file?
Fork the repo and modify Dockerfile?
@masnn You can just write a simple Dockerfile like this.
FROM vijos/vj4:latest
ADD path/to/your/file.ext dest/in/container/file.ext
And build your own image.
@masnn check the Dockerfile in this repo (https://github.com/vijos/vj4-docker/blob/master/Dockerfile#L17), you will see it should be /app/src/vj4/model/builtin.py
Thanks!
I've never used docker before.
:( I'm back.
Traceback (most recent call last):
web_1 | File "/usr/local/lib/python3.6/runpy.py", line 193, in _run_module_as_main
web_1 | "__main__", mod_spec)
web_1 | File "/usr/local/lib/python3.6/runpy.py", line 85, in _run_code
web_1 | exec(code, run_globals)
web_1 | File "/app/src/vj4/server.py", line 67, in <module>
web_1 | sys.exit(main())
web_1 | File "/app/src/vj4/server.py", line 64, in main
web_1 | web.run_app(app.Application(), sock=sock, access_log=None, shutdown_timeout=0)
web_1 | File "/app/src/vj4/app.py", line 55, in __init__
web_1 | loop.run_until_complete(asyncio.gather(tools.ensure_all_indexes(), bus.init()))
web_1 | File "/usr/local/lib/python3.6/asyncio/base_events.py", line 473, in run_until_complete
web_1 | return future.result()
web_1 | File "/app/src/vj4/service/bus.py", line 16, in init
web_1 | channel = await _consume()
web_1 | File "/app/src/vj4/service/bus.py", line 21, in _consume
web_1 | channel = await mq.channel('bus')
web_1 | File "/app/src/vj4/mq.py", line 44, in channel
web_1 | channel = await (await _connect()).channel()
web_1 | File "/app/src/vj4/mq.py", line 20, in _connect
web_1 | _, protocol = await aioamqp.connect(host=options.mq_host, virtualhost=options.mq_vhost)
web_1 | File "/usr/local/lib/python3.6/site-packages/aioamqp/__init__.py", line 59, in connect
web_1 | factory, host, port, **create_connection_kwargs
web_1 | File "/usr/local/lib/python3.6/asyncio/base_events.py", line 739, in create_connection
web_1 | infos = f1.result()
web_1 | File "/usr/local/lib/python3.6/concurrent/futures/thread.py", line 56, in run
web_1 | result = self.fn(*self.args, **self.kwargs)
web_1 | File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
web_1 | for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
web_1 | socket.gaierror: [Errno -2] Name or service not known
I had changed the server.
I copied the all the files and run docker-compose up -d
It's now throwing this error.
And the container 'web' is always restarting.
I can start vj4-docker normally by removing the old data/ folder.
I had chmod it to 600.
Problem solved.Thanks!