ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
69007
|
Tue Aug 20 10:34:37 2019 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Linux | 3.1.3 | Re: Drag and drop does not work in 3.1.3? | The Drag & Drop was implemented already in 3.0.0 (see https://elog.psi.ch/elog/download/ChangeLog). So no idea why it's not working for you.
Stefan
Lech wrote: |
Hello,
I can paste images into text (which resulted in the text_size too long error message), however, I can't drop them on my elog. However, I can do it on the demo version. Was the drag and drop into text already supported in version 3.1.3 and I am just missing some configuration option, or do I need to find a repository with a more recent version of elog?
Thanks!
|
|
69006
|
Tue Aug 20 09:47:06 2019 |
| Lech | subs@lwp.email | Question | Linux | 3.1.3 | Drag and drop does not work in 3.1.3? | Hello,
I can paste images into text (which resulted in the text_size too long error message), however, I can't drop them on my elog. However, I can do it on the demo version. Was the drag and drop into text already supported in version 3.1.3 and I am just missing some configuration option, or do I need to find a repository with a more recent version of elog?
Thanks! |
69005
|
Mon Aug 19 14:09:22 2019 |
| Informatica Unidad SSBB AEMET VALENCIA | infoval@aemet.es | Question | Windows | ELOG V3.1.4-a04 | Re: Cannot submit due to authentification errors | I try with gmail account and neither it works.
I'm using Windows 10 and it runs into a proxy defined as URL
[global]
port = 80
SMTP host = mdm.correo.gob.es
SMTP username = XXXX@aemet.es
SMTP password = XXXXXX
SMTP port = 25
URL = http://proxy.aemet.es:3128/
Thanks
Andreas Luedeke wrote: |
If you post the [global] part of your configuration, it would help a little bit to understand the problem.
Cheers, Andreas
Informatica Unidad SSBB AEMET VALENCIA wrote: |
Hi everyone.
We are new in ELOG. We have installed it and created new logbooks following the "demo" one. We have configured our SMTP host, with email and pass, but we obtain this error when submit
Error sending Email via <i>"mdm.correo.gob.es"</i>: 5.7.8 Error: authentication failed: another step is needed in authentication
Do you know why and give us some tips for solution?
Our bests,
Informática AEMET Valencia
|
|
|
69004
|
Sat Aug 17 22:23:34 2019 |
| Andreas Luedeke | andreas.luedeke@psi.ch | Question | Windows | ELOG V3.1.4-a04 | Re: Cannot submit due to authentification errors | If you post the [global] part of your configuration, it would help a little bit to understand the problem.
Cheers, Andreas
Informatica Unidad SSBB AEMET VALENCIA wrote: |
Hi everyone.
We are new in ELOG. We have installed it and created new logbooks following the "demo" one. We have configured our SMTP host, with email and pass, but we obtain this error when submit
Error sending Email via <i>"mdm.correo.gob.es"</i>: 5.7.8 Error: authentication failed: another step is needed in authentication
Do you know why and give us some tips for solution?
Our bests,
Informática AEMET Valencia
|
|
69003
|
Fri Aug 16 13:24:26 2019 |
| Informatica Unidad SSBB AEMET VALENCIA | infoval@aemet.es | Question | Windows | ELOG V3.1.4-a04 | Cannot submit due to authentification errors | Hi everyone.
We are new in ELOG. We have installed it and created new logbooks following the "demo" one. We have configured our SMTP host, with email and pass, but we obtain this error when submit
Error sending Email via <i>"mdm.correo.gob.es"</i>: 5.7.8 Error: authentication failed: another step is needed in authentication
Do you know why and give us some tips for solution?
Our bests,
Informática AEMET Valencia
|
69002
|
Thu Aug 15 19:00:12 2019 |
| Antonio Bulgheroni | antonio.bulgheroni@gmail.com | Question | Windows | 3.1.4 | Re: Unable to add entries with command line elog.exe with SSL | So as promised, I add some more information.
Unfortunately changing the port where the server is listening did not make any change. The situation is still the same. If I try directly from the server, I get a warning about the fake certificate and if I do it from elsewhere, I get the error that the server is not running SSL.
I had a look at the source code of elog.c and found the point where the error is produced. in order to produce this message, the ssl_connect should be returning -1 and this is only possible in two cases:
if (SSL_connect(*ssl_con) <= 0)
return -1;
cert = SSL_get_peer_certificate(*ssl_con);
if (cert == NULL)
return -1;
So, in the first case, it means that the SSL connection failed completly. In the second case, the peer certificate is invalid.
Is it possible to discriminate between the two, for example changing the return value? Unfortunately I don't have a windows computer with development tools. So it would be great if you could prepare an executable for me with this small change.
Thanks in advance for your help,
cheers,
|
69001
|
Thu Aug 15 13:34:23 2019 |
| Andreas Luedeke | andreas.luedeke@psi.ch | Request | Linux | 3.1.4 | Re: restrict edit time | Yes, I agree that cleaning up old Draft entries and correcting/deleting old entries is a job for the administrator. Currently I do what you've said: commenting out "restrict edit time", changing the entry, commenting in "restrict edit time".
There are already some commands specifically for the admin:
Admin textarea = <cols>,<rows>
Admin user = <user list>
It would make sense to add more of them, for this specific case:
- Admin restrict edit time =
<hours>
If that is set to "-1", then the Admin can edit old entries regardless of their age. Actually there is no option to "unset" restrict edit time inherited from a global config: a negative time would make sense as "disabling" restrict edit time.
Another item for the endless wishlist ;-)
Cheers, Andreas
Sebastian Schenk wrote: |
Hello,
I have experienced some inconveniences with the restrict edit time option.
First, it is not possible for admin users to edit an entry after the edit time.
The restrict edit option allows admin users to edit posts from other users,
so I think admins should also be allowed to edit posts after edit time.
As they can edit the config and temporarily disable the restrict edit time option, which is an issue.
Secondly, if a user made a draft and did not submitted it before the edit time runs out,
the draft got stuck as it cannot be edited (and submitted) any more.
Best wishes,
Sebastian
|
|
Draft
|
Thu Aug 15 09:45:37 2019 |
| Antonio Bulgheroni | antonio.bulgheroni@gmail.com | Question | Windows | 3.1.4 | Re: Unable to add entries with command line elog.exe with SSL | As promised, here is the results of the additional debugging.
Changing to port 443 doesn't help. I keep having exactly the same behaviour, it is to say:
- from the server itself I get
Antonio Bulgheroni wrote: |
Dear Andreas,
thanks for your message.
Here are the answers to your questions.
- Tomorrow I will try to restart the server on port 443, at least temporary, to see if it makes any difference
- We don't have a real certificate, but just the self-signed certificate that comes with the standard distribution of elog. Of course, I have to accept an exception when connecting from the browser. When I try to add an entry to via the command line from the server itself, I get the message Possibly invalid certificate, continue on your own risk! but it works.
- I hope so. This is the elog.exe that comes with the standard distribution, so I have to presume so. It is the same version that is installed on the server, where it works.
Thanks again and more tomorrow...
Andreas Luedeke wrote: |
I am using SSL with ELOG and it works fine with the "elog" executable. I am no expert on SSL, but I can provide my two cent what you could try, maybe it helps:
- SSL desires to run on the port 443 - I have no idea if you can force it to run on an arbitrary port, it might be possible. But does it make sense?
- Certificates are checked against the provider of the certificate. I guess this works fine from your web browser? Or did you just add a security exception?
- Has the installed "elog.exe" been compiled with SSL support on?
Antonio Bulgheroni wrote: |
Any news for my problem?
Your help is very much appreaciated!
thanks :)
Antonio Bulgheroni wrote: |
Dear all,
we have a running elog installation using SSL (with the self-signed certificate). Generally we use the web interface, but we have been asked if it was possible to automatically insert elog entries via command line.
elog.exe should be the answer and so I gave it a try.
I was trying the following command line:
elog.exe. -h server-ip-address -p 8080 -l demo -s -v -u username password -a "Mass=0" This is a test entry
Of course server-ip-address and username / password were proper fields.
When I was doing this from the server itself, I got the following message:
Successfully connected to host server-ip-address, port 8080
Possibly invalid certificate, continue on your own risk!
and then the entry was inserted, but when I was typing the same from any other PC I got the error message:
Successfully connected to host server-ip-address, port 8080
elogd server does not run SSL protocol
The entry is of course not added and also the server (that is running in very verbose mode) reported a
SSL_accept failed
How can I fix it?
Thanks for helping,
Antonio
|
|
|
|
|
|