[Evolution] Weird menu bar above menu bar
Hello folks, since my last system update I have a weird menu bar above the actual menu bar (actual menu bar is the one, that has the drop down menus "File", "Edit", "View" etc.; the weird menu bar is buttons for "Compose " and "Send & Receive" and has the window title in the middle). I attached a screenshot about it. It's a bit annoying, it uses quite a lot of screen space and having those buttons in an extra row seems redundant. I wanted them back in the tool bar. So, is there any way to get this back to how it was? Is it related to Evolution? Or maybe to gtk? Cheers, Peter -- In case it matters, I am running - Evolution 3.46.1 - gtk4 4.8.2 - gtk3 3.24.34 - gtk2 2.24.33 ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Reject a single meeting of a series that got accepted
Hello guys, I am using Evolution with EWS and I have accepted a meeting invitation that consits of 10 occurences. I do now want to cancel only a single one of those. How can I do that? I think I am missing something ... :( Cheers, Peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] CalDAV is readonly
Hello everyone, I tried to conenct my work calendar (provided by some Exchange server) via CalDAV to Evolution. However it is considered /readonly/ for some reason. How can I make it writeable? I started the calendar factory in debug mode (CALDAV_DEBUG=all and -w flag) to see what the server provides: ... Allow: OPTIONS, PROPFIND, HEAD, GET, REPORT, PROPPATCH, PUT, DELETE, POST <-- I guess the HTML actions are fine... ... The reply to the PROPFIND request is this: ... /users/peter.kra...@kit.edu/calendar/ <-- I guess this means I can write HTTP/1.1 200 OK ... Is there something I do wrong? Maybe a way to override those settings? Thanks in advance, Peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Reject a single meeting of a series that got accepted
Hm, thanks, I guess I can do that, but then the whole meeting is gone. I would like to have an Outlook-like behaviour, that simply marks my attendance status as "not attending", so others can also see what I am doing. Is that handled by the EWS protocol or is it an Evolution thing? On Thu, 2020-01-09 at 12:56 +0100, Milan Crha via evolution-list wrote: > On Thu, 2020-01-09 at 10:20 +, Krauß, Peter (SCC) via evolution- > list wrote: > > I am using Evolution with EWS and I have accepted a meeting > > invitation that consits of 10 occurences. I do now want to cancel > > only a single one of those. How can I do that? > > Hi, > try to right-click the instance in the Calendar view and pick "Delete > this instance only" from the context menu. If it won't be possible to > delete it for whatever reason, the EWS calendar will tell you. > Bye, > Milan > > ___ > evolution-list mailing list > evolution-list@gnome.org > To change your list options or unsubscribe, visit ... > https://mail.gnome.org/mailman/listinfo/evolution-list -- Peter Krauß Karlsruher Institut für Technologie (KIT) Steinbuch Centre for Computing (SCC) Forschungsgruppe Cloud Computing Hermann-von-Helmholtz-Platz 1 Gebäude 449/R105 76344 Eggenstein-Leopoldshafen Telefon: +49(0)721/608-26578 E-Mail: peter.kra...@kit.edu Web: http://www.kit.edu/ KIT - Universität des Landes Baden-Württemberg und nationales Forschungszentrum in der Helmholtz-Gemeinschaft ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] CalDAV is readonly
Hi, exactly, I'm on 3.34.3. I did indeed do several restarts (without success). Thanks for your efforts though, I'll file a bug on github to keep track of this and see if I am the only one who is affected by this. Cheers, Peter On Thu, 2020-01-09 at 16:22 +0100, Milan Crha via evolution-list wrote: > On Thu, 2020-01-09 at 12:06 +, Krauß, Peter (SCC) via evolution- > list wrote: > > However it is considered /readonly/ for some reason. How can I make > > it writeable? I started the calendar factory in debug mode > > (CALDAV_DEBUG=all and -w flag) to see what the server provides: > > Hi, > there used to be a problem that the read/write property changes were > not properly delivered to the client side, thus the client side > thought > the calendar/book/... is read only, even though the backend side knew > it can also write to, not only read from. > > It seems you use 3.34.3, probably both evolution-data-server and > evolution), which contains latest attempts to address this issue. > > I do not think it always worked, but I think a restart of the > calendar > factory or the background processes sometimes helped. I suppose you > restarted the calendar factory process (when running it to get the > log), but it didn't help, right? I've no idea what to try next, the > log > snippets you showed looks fine. > Bye, > Milan > > ___ > evolution-list mailing list > evolution-list@gnome.org > To change your list options or unsubscribe, visit ... > https://mail.gnome.org/mailman/listinfo/evolution-list -- Peter Krauß Karlsruher Institut für Technologie (KIT) Steinbuch Centre for Computing (SCC) Forschungsgruppe Cloud Computing Hermann-von-Helmholtz-Platz 1 Gebäude 449/R105 76344 Eggenstein-Leopoldshafen Telefon: +49(0)721/608-26578 E-Mail: peter.kra...@kit.edu Web: http://www.kit.edu/ KIT - Universität des Landes Baden-Württemberg und nationales Forschungszentrum in der Helmholtz-Gemeinschaft ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] CalDAV is readonly
Hi Milan, I did some debugging too and I could get it working by fixing some bug in e_webdav_session_extract_privilege_simple in e-webdav-session.c. I believe the problem is the following: When the privlieges are retrieved from the server, the relevant XML snippet looks like this: As you can see, the privilege node contains the two child nodes, however when it's passed to e_webdav_session_extract_privilege_simple, the for loop stops after evaluating the first one due to the break statement and thus skips any further privileges. So basically it boiled down to e_webdav_session_extract_privilege_simple only returning a single privilege and not the whole set which I think was the bug. Maybe the for loop in e_webdav_session_current_user_privilege_set_cb was supposed to deal with this...? Anyway, my C is pretty rusty so I'd not consider my hacky workaround code any good but if you think it is of any use to clarify the problem, I can send you a diff. Cheers, Peter On Tue, 2020-01-14 at 11:28 +0100, Milan Crha via evolution-list wrote: > On Tue, 2020-01-14 at 07:43 +, Krauß, Peter (SCC) via evolution- > list wrote: > > I did indeed do several restarts (without success). > > Hi, > just to be clear, I didn't mean restart of the whole machine, but > restart of the calendar factory only, that is, of the > evolution-calendar-factory process. > > You even do not need to kill the process to be restarted, just close > evolution, open terminal and execute there: > >$ /usr/libexec/evolution-calendar-factory -w > > then wait for few seconds and only then start Evolution. Though I > think > you captured the log from the initial email in a very similar way and > it still did not work, thus this won't work as well. > > Maybe you can run DBus monitor and search what it passed around. You > might focus on "writable" and "Writable" (quotes for clarity only) > signals/properties. The command is: > >$ dbus-monitor > > then I see for example this after I open a calendar which had not > been > opened yet: > > > signal time=1578997003.522247 sender=:1.181 -> destination=(null > > destination) serial=878 > > path=/org/gnome/evolution/dataserver/Subprocess/6081/25; > > interface=org.freedesktop.DBus.Properties; member=PropertiesChanged > > string "org.gnome.evolution.dataserver.Calendar" > > array [ > > dict entry( > > string "Writable" > > variant boolean true > > ) > > ] > > array [ > > ] > > followed by a method invocation response: > > > method return time=1578997003.522745 sender=:1.181 -> > > destination=:1.226 serial=879 reply_serial=42 > > array [ > > string "alarm-email-address" > > string "''" > > string "cache-dir" > > . > > string "writable" > > string "true" > > ] > > this is how the backends notify the clients about their state, one of > them being writability. It's hard to recognize which calendar the > response belongs to, that why I'd try on one, which is not opened > yet. > Note the dbus-monitor output will be very chatty, quite many things > sends something over D-Bus all the time, thus expect interleaved > output. > Bye, > Milan > > ___ > evolution-list mailing list > evolution-list@gnome.org > To change your list options or unsubscribe, visit ... > https://mail.gnome.org/mailman/listinfo/evolution-list -- Peter Krauß Karlsruher Institut für Technologie (KIT) Steinbuch Centre for Computing (SCC) Forschungsgruppe Cloud Computing Hermann-von-Helmholtz-Platz 1 Gebäude 449/R105 76344 Eggenstein-Leopoldshafen Telefon: +49(0)721/608-26578 E-Mail: peter.kra...@kit.edu Web: http://www.kit.edu/ KIT - Universität des Landes Baden-Württemberg und nationales Forschungszentrum in der Helmholtz-Gemeinschaft ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Quick search and threads
Hello! I am using the Message-ID header of e-mails to reference them in appointments. To quickly find the email, I use a free form expresssion in the quick search bar: h:Message-ID=... However, this will only return exactly that one email. Is there a way to get the whole mail thread back without going through the whole "Advanced Search" dialog? Cheers, Peter -- Peter Krauß Karlsruher Institut für Technologie (KIT) Steinbuch Centre for Computing (SCC) Forschungsgruppe Cloud Computing Hermann-von-Helmholtz-Platz 1 Gebäude 449/R105 76344 Eggenstein-Leopoldshafen Telefon: +49(0)721/608-26578 E-Mail: peter.kra...@kit.edu Web: http://www.kit.edu/ KIT - Universität des Landes Baden-Württemberg und nationales Forschungszentrum in der Helmholtz-Gemeinschaft ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Adding style class to evolution-alarm-notify
Hello, I would like to restyle the Evolution Alarm notification window as it doesn't really look well with the theme I am using. While doing so, I noticed that the window does not contain any information indicating that it's the Evolution window making it a hard to apply a custom style sheet. So my suggestion would be to apply a custom style class to the evolution-alarm-notification window in the same way as many other applications do it for their app windows. Maybe something like this: > /* e-alarm-notify.c, e_alarm_notify_show_window(...) /* > GtkStyleContext *context; > context = gtk_widget_get_style_context(GTK_WIDGET(window)); > gtk_style_context_add_class(context, "evolution-alarm-notify- > window"); I tested this on the latest git version without a problem. Any chance this might be accepted if I create a pull request? Cheers, Peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Change attribute mapping in LDAP address books
Hello, our work address book can be accessed using LDAP. But for some reason unknown to me, a user's display name is stored in the "displayname" property. I wonder if it's possible to somehow tell Evolution to use this property to create the heading for the vcards shown in the "Contacts" View. Does anyone know if it's possible to change the attribute mapping in LDAP-based address books? Cheers, -Peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Hiding the Location in calendar view
Hello! Is there a way to hide the location information of an appointment in the calendar view (week, month)? As of now, the location is in brackets behind an appointments summary/subject when the calendar view set to week/month. However since on my display the columns are pretty narrow and I'd like to shorten the titles if possible. Cheers, Peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Hiding the Location in calendar view
Ok, I tried that but I am not fully satisfied. I tried to dig into the code a bit to find out where the string gets constructed yet I have to say it's an overwhelming amount of stuff. Could you point me on where to look out for this? My efforts up to now only allow me to change the background box (I found `week_view_event_item_draw` in `src/calendar/gui/e-week-view-event- item.c` for that...) yet it seems to be unrelated to the text and only draws the boxes. Cheers, Peter On Tue, 2021-04-06 at 11:31 +0200, Milan Crha via evolution-list wrote: > On Tue, 2021-04-06 at 10:52 +0200, Krauß, Peter (SCC) via evolution- > list wrote: > > Is there a way to hide the location information of an appointment > > in > > the calendar view (week, month)? > > Hi, > no, it's not. As long as your intention is to shorten the title, > which > consists of "summary (location)", I'd say hiding the location part > won't help much, because it's after the summary, thus it's the > location > part, which gets ellipsized and has got eventually hidden due to the > screen space constraints. > > Try Edit->Preferences->Calendar and Tasks->Display tab->"Show > appointment end times in week and month view" and "Show appointment > icons in the month view", to limit what the two views show (which can > give more space for the event summary). > Bye, > Milan > > ___ > evolution-list mailing list > evolution-list@gnome.org > To change your list options or unsubscribe, visit ... > https://mail.gnome.org/mailman/listinfo/evolution-list ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Evolution w EWS not respecting "From" when sending eMails
Hello! I am using Evolution with our corporate Exchange Server and the EWS plugin. My primary mail address there is prim...@kit.edu, and alias is set up which is al...@kit.edu (changed to make it easier in the following). In Evolution, I am only using my alias (Preferences -> Mail Accounts -> Identity: "Email Address: al...@kit.edu", "Reply-To: al...@kit.edu"). When I compose a new mail, the drop-down next to "From: " has only one option which is my alias (al...@kit.edu). However, and this is where I think things go wrong, when I send an email, the sender shows up as "prim...@kit.edu". I confirmed this by checking the sender using the Outlook web client as well as Thunderbird, both see "prim...@kit.edu" as sender. In addition, I tried to send a mail using SMTP and Thunderbird with my alias setup as sender and it works correctly and "al...@kit.edu" shows up as sender. Is this a bug, a configuration issue, or am I doing it all wrong? -peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Evolution w EWS not respecting "From" when sending eMails
Ok, thanks everyone. I was afraid this is the case :D But at least I don't spend more time digging into it then. cheers, Peter On Tue, 2021-10-05 at 13:06 +0100, Pete Biggs wrote: > > > > Is this a bug, a configuration issue, or am I doing it all wrong? > > > That sounds very much like your Exchange admins are enforcing a > specific email address when sending through Exchange. Some admins / > bosses think that re-writing the From: address to match what you > login > to the server as and to what they think it should be is the way to > stop > address spoofing. > > P. > > > ___ > evolution-list mailing list > evolution-list@gnome.org > To change your list options or unsubscribe, visit ... > https://mail.gnome.org/mailman/listinfo/evolution-list ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Showing replies below mails
Hello everyone, I wonder if it's possible to configure Evolution in a way that I my reply mails are grouped in the thread they belong to. Currently, mails are only grouped there if I activate a setting in the account preferences ("Save replies in the folder of the message"), yet this only works for mails sent with Evolution. I also use the account on my smart phone and with other mail clients (OWA), resulting in the reply emails only present in the sent-mails- folder and thus not appearing in the mail thread. Further I found that OWA can indeed group mails with replies in a thread somehow even if the reply was sent with a totally different mail program. So I was wondering if Evolution could do that too. Cheers, Peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] "Compose New Message" missing in "New" dropdown in toolbar.
Hello everyone! I just found that the "New" dropdown button in the toolbar doesn't do anything when I click it and if I click the little downwards-triangle next to it, all I get is a single entry called "New collection account". I upgraded to version 3.44.4 and I am pretty sure it worked before. Am I doing anything wrong? How can I get the button back to open the mail composer when I click it? maybe it's relevant: I am using gtk3 3.24.34 and gtk4 4.8.1 with awesomeWM (not Gnome). Cheers, Peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] "Compose New Message" missing in "New" dropdown in toolbar.
Ah nice! I saw a commit has also already been provided, the workaround is good enough for me until it the fix appears. Thanks! On Mon, 2022-09-26 at 00:07 +0200, Ángel wrote: > On 2022-09-25 at 21:16 +, Krauß, Peter (SCC) wrote: > > Hello everyone! > > > > I just found that the "New" dropdown button in the toolbar doesn't > > do > > anything when I click it and if I click the little downwards- > > triangle > > next to it, all I get is a single entry called "New collection > > account". > > > > I upgraded to version 3.44.4 and I am pretty sure it worked before. > > Am I doing anything wrong? How can I get the button back to open > > the > > mail composer when I click it? > > > > maybe it's relevant: I am using gtk3 3.24.34 and gtk4 4.8.1 with > > awesomeWM (not Gnome). > > > > Cheers, > > Peter > > That's due to some behavior change in glib2. There is a workaround of > moving to another view (Contacts, Calendar...) and then back (you can > do Ctrl+2, followed by Ctrl+1). That should populate the New button > (and the File->New menu) again. > > The shortcuts still work, Ctrl+Shift+M should open the new mail > message > composer window. > > This was mentioned a few days ago: > https://mail.gnome.org/archives/evolution-list/2022-September/msg00095.html > > The relevant bug report > https://gitlab.gnome.org/GNOME/evolution/-/issues/1969 > > Regards > > > ___ > evolution-list mailing list > evolution-list@gnome.org > To change your list options or unsubscribe, visit ... > https://mail.gnome.org/mailman/listinfo/evolution-list ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Trouble with LDAP
Hello folks! Our company uses Windows-AD-based LDAP and I want to use it to auto- complete contacts. I am pretty sure my settings are correct (-> tested using Apache LDAP explorer), I entered a working BaseDN + LDAP Search filter but no contacts are shown. When I hit the "Refresh button" a spinner appears, but the view stays empty. Autocompletion also doesn't work: I enabled "Autocomplete with this address book" in the address book's properties and I checked the address book in the Autocompletion panel in "Preferences". Does anyone have an idea what I am doing wrong or how I could debug this? Thanks + cheers, Peter ___ evolution-list mailing list evolution-list@gnome.org To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list