[Desktop-packages] [Bug 2042844] [NEW] JS ERROR: Gio.DBusError: GDBus.Error:org.freedesktop.DBus.Error.Failed: error occurred in AboutToShow

2023-11-06 Thread iMac
Public bug reported:

With several indicator icons (Chrome, Slack, 1Password) a GDBus.Error
systemd error message appears with each iteration of a left-click of any
impacted indicator icon prior to the icon's menu appearing.

Ubuntu Mantic 23.10, gnome-shell 45.0-1ubuntu2, gnome-shell-extension-
appindicator 57-1

Also reported upstream here: https://github.com/ubuntu/gnome-shell-
extension-appindicator/issues/445

Nov 06 08:32:20 ubuntu-mantic gnome-shell[3927]: JS ERROR: Gio.DBusError: 
GDBus.Error:org.freedesktop.DBus.Error.Failed: error occurred in AboutToShow

_promisify/proto[asyncFunc]/https://bugs.launchpad.net/bugs/2042844

Title:
  JS ERROR: Gio.DBusError:
  GDBus.Error:org.freedesktop.DBus.Error.Failed: error occurred in
  AboutToShow

Status in gnome-shell-extension-appindicator package in Ubuntu:
  New

Bug description:
  With several indicator icons (Chrome, Slack, 1Password) a GDBus.Error
  systemd error message appears with each iteration of a left-click of
  any impacted indicator icon prior to the icon's menu appearing.

  Ubuntu Mantic 23.10, gnome-shell 45.0-1ubuntu2, gnome-shell-extension-
  appindicator 57-1

  Also reported upstream here: https://github.com/ubuntu/gnome-shell-
  extension-appindicator/issues/445

  Nov 06 08:32:20 ubuntu-mantic gnome-shell[3927]: JS ERROR: Gio.DBusError: 
GDBus.Error:org.freedesktop.DBus.Error.Failed: error occurred in AboutToShow
  
_promisify/proto[asyncFunc]/https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-appindicator/+bug/2042844/+subscriptions


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1948533] Re: any dns defined in network-manager doesnt go in openvpn tunnel (leaks on gnome/mate/xubuntu only in 21.10)

2022-04-18 Thread iMac
We have noticed this as well.  Using VPN we use a special resolver to
handle private IP space, and now, looking into this further it does look
like the network-manager is ignoring the dns= specified in the system-
connections (set via the network manager settings gui).

My settings below, noting X.X.X.x is where my DNS resolver IP address
would normally be and X.com I placed in any domain search field.

A quick check from the command line shows the server is reachable, and
responding properly, just not receiving any requests.

[ipv4]
dns=X.X.X.X;
dns-search=
ignore-auto-dns=true
method=auto

[ipv6]
addr-gen-mode=stable-privacy
dns-search=
method=auto

It doesn't appear there are any overrides, and netplan shows
NetworkManager should be controlling everything. nmcli confirms the DNS
is set

$ nmcli conn show "MyVPNConnectionName" | grep dns
connection.mdns:-1 (default)
ipv4.dns:   X.X.X.X
ipv4.dns-search:--
ipv4.dns-options:   --
ipv4.dns-priority:  0
ipv4.ignore-auto-dns:   yes
ipv6.dns:   --
ipv6.dns-search:--
ipv6.dns-options:   --
ipv6.dns-priority:  0
ipv6.ignore-auto-dns:   no


$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

$ netplan  get
network:
  version: 2
  renderer: NetworkManager

$ cat /etc/resolv.conf | grep -v "#"

nameserver 127.0.0.53
options edns0 trust-ad
search X.com

In the nmcli, I did notice that tun0, spawned as a seperate connection
has no DNS defined


$ nmcli conn show "tun0" | grep -i dns
connection.mdns:-1 (default)
ipv4.dns:   --
ipv4.dns-search:--
ipv4.dns-options:   --
ipv4.dns-priority:  100
ipv4.ignore-auto-dns:   no
ipv6.dns:   --
ipv6.dns-search:--
ipv6.dns-options:   --
ipv6.dns-priority:  100
ipv6.ignore-auto-dns:   no


I also see the DNS for the actual wired or wireless connection in use is 
defined, and so must be superseding the OpenVPN defined setting. 

It does seem like a priority issue, whereby the VPN connection should
have priority.  In my case both the VPN and the default WiFi connection
have priority "0"

$ nmcli conn show "MyVPNConnectionName" | grep priority
connection.autoconnect-priority:0
ipv4.dns-priority:  0
ipv6.dns-priority:  0
 
So it seems I would need to change the relative priority to solve this problem. 
 Lower value is higher priority.  

Network Manager should be setting the default connection to 100, and the
VPN to 50, per some Network Manager defaults.

https://access.redhat.com/documentation/en-
us/red_hat_enterprise_linux/8/html/configuring_and_managing_networking/configuring-
the-order-of-dns-servers_configuring-and-managing-networking

This document also suggests if they are the same (mine are both 0) the
one with active default route with the lowest metric should win.

In my case, the tun0 would win, but it is not where the DNS is defined.
It would be nice to see what changed in 20.04, but clearly my guess
would be that

a) Default Connection (wifi/wired) used to be dns priority 100 lost to the VPN 
conenction because dns priority was tied, and vpn default gateway metric was 
lower, or 
b) because vpn dns priority was lower

Either way, something does not seem right with current nm defaults for
connections and their dns.priorities

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1948533

Title:
  any dns defined in network-manager doesnt go in openvpn tunnel (leaks
  on gnome/mate/xubuntu only in 21.10)

Status in network-manager package in Ubuntu:
  Expired

Bug description:
  in all linux including ubuntu up to version 21.04, when dns is set to not 
automatic in network manager and one dns is set manually (exemple 1.1.1.1) when 
openvpn is used the dns is going through the vpn tunnel.
  On ubuntu 21.10 (I tested ubuntu, ubuntu mate and xubuntu)I can affirm the 
dns in this case is not going trough the vpn.it is leaking.I have used ubuntu 
for years this is first time this problem occurs (21.10).(and it s not just a 
question of packages because on my arch linux installs I never had such 
problem, so it must be a config problem.

  (when using packages stubby or dnscrypt-proxy (to encrypt dns queries)
  and dns 127.0.0.1 is set in network-manager the dns does goes trough
  the vpn (but stubby service needs to be sometimes reloded, it is less
  reliable that it used to be with previous versions of ubuntu)

  (I cannot speculate where 

[Desktop-packages] [Bug 1968235] Re: Dual DP 4K @60Hz requires toggling to 30Hz and back to 60Hz

2022-04-07 Thread iMac
I managed to bring both screens up at 30Hz by passing video resolutions
as kernel parameters

video=DP-3:3840x2160@30 video=DP-4:3840x2160@30

This means I do not have to do any display port replugging on startup.

I still have to manually change the refresh from 30Hz to 60Hz in the
settings. If there was a way to do this via cli, I would have a full
workaround for this issue.

I also noted that I was actually loosing the displays earlier in the
boot process, maybe at some DRM/framebuffer loading point, as I was not
seeing the extra few seconds of green service [OK]s, prior to wayland.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/1968235

Title:
  Dual DP 4K @60Hz requires toggling to 30Hz and back to 60Hz

Status in wayland package in Ubuntu:
  New

Bug description:
  I recently started using a Cable-Matters-201355 with my XPS 9380 (8th
  Gen TB3).  The dock supports dual 4K DP @ 60Hz via thunderbolt with PD
  input. (HBR3 compliant USB-C Dock (DSC/DP1.4 support) that uses all 4
  high speed lanes to get dual 60Hz)

  Both displays boot mirrored when powered up (Dell Logo, Grub, Kernel
  output) however go blank just as wayland starts up.

  Unplugging one of them allows the other to appear at 3840x2160@60Hz,
  after which I have to execute the following process to get both up and
  running.

  1) Change the refresh rate of the active display to 30Hz, apply in Screen 
Display settings dialog
  2) Plug the 2nd monitor in; At this point both appear in Screen Display 
dialog @60Hz, but the 2nd remains blank
  3) Change both to 30Hz, apply; At this point the 2nd screen turns on
  4) Change both to 60Hz, apply; At this point both are working at 60Hz, my 
desired end state

  Inspection of edid seems fine (below), other than the DisplaySize
  showing 27" instead of 32". Monitors are identical.

  Previously, I might be able to script my steps above using xrandr, but
  that seems to no longer be the case with 21.10 and wayland. I seem to
  be limited to the Screen Display dialog.

  Since I can fix by simply re-applying the settings, it seems like a
  bug on startup.  If I could find a CLI option to allow me to script
  this somehow, that workaround would be just fine for myself.

  Lid open/closed, power via the 201344 or direct via other TB-PD port
  has no impact.

  Here's hoping for a bugfix in 22.04 or at least a way to script the
  display configuration.

  $ cat /sys/class/drm/card0-DP-4/edid | parse-edid
  Checksum Correct

  Section "Monitor"
   Identifier "LG HDR 4K"
   ModelName "LG HDR 4K"
   VendorName "GSM"
   # Monitor Manufactured week 5 of 2021
   # EDID version 1.4
   # Digital Display
   DisplaySize 600 340
   Gamma 2.20
   Option "DPMS" "true"
   Horizsync 30-135
   VertRefresh 56-61
   # Maximum pixel clock is 560MHz
   #Not giving standard mode: 1152x864, 60Hz
   #Not giving standard mode: 1280x1024, 60Hz
   #Not giving standard mode: 1280x720, 60Hz
   #Not giving standard mode: 1600x900, 60Hz
   #Not giving standard mode: 1920x1080, 60Hz
   #Not giving standard mode: 1280x800, 60Hz

   #Extension block found. Parsing...
   Modeline "Mode 6" 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync 
+vsync
   Modeline "Mode 0" 519.38 3840 3864 3880 3896 2160 2214 2219  +hsync 
-vsync
   Modeline "Mode 1" 266.64 3840 3848 3992 4000 2160 2214 2219  +hsync 
-vsync
   Modeline "Mode 2" 148.500 1920 2008 2052 2200 1080 1084 1089 1125 +hsync 
+vsync
   Modeline "Mode 3" 74.250 1280 1390 1420 1650 720 725 730 750 +hsync 
+vsync
   Modeline "Mode 4" 27.027 720 736 798 858 480 489 495 525 -hsync -vsync
   Modeline "Mode 5" 25.200 640 656 752 800 480 490 492 525 -hsync -vsync
   Modeline "Mode 7" 241.50 2560 2608 2640 2720 1440 1443 1448 1481 +hsync 
-vsync
   Option "PreferredMode" "Mode 6"
  EndSection

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/1968235/+subscriptions


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1968235] [NEW] Dual DP 4K @60Hz requires toggling to 30Hz and back to 60Hz

2022-04-07 Thread iMac
Public bug reported:

I recently started using a Cable-Matters-201355 with my XPS 9380 (8th
Gen TB3).  The dock supports dual 4K DP @ 60Hz via thunderbolt with PD
input. (HBR3 compliant USB-C Dock (DSC/DP1.4 support) that uses all 4
high speed lanes to get dual 60Hz)

Both displays boot mirrored when powered up (Dell Logo, Grub, Kernel
output) however go blank just as wayland starts up.

Unplugging one of them allows the other to appear at 3840x2160@60Hz,
after which I have to execute the following process to get both up and
running.

1) Change the refresh rate of the active display to 30Hz, apply in Screen 
Display settings dialog
2) Plug the 2nd monitor in; At this point both appear in Screen Display dialog 
@60Hz, but the 2nd remains blank
3) Change both to 30Hz, apply; At this point the 2nd screen turns on
4) Change both to 60Hz, apply; At this point both are working at 60Hz, my 
desired end state

Inspection of edid seems fine (below), other than the DisplaySize
showing 27" instead of 32". Monitors are identical.

Previously, I might be able to script my steps above using xrandr, but
that seems to no longer be the case with 21.10 and wayland. I seem to be
limited to the Screen Display dialog.

Since I can fix by simply re-applying the settings, it seems like a bug
on startup.  If I could find a CLI option to allow me to script this
somehow, that workaround would be just fine for myself.

Lid open/closed, power via the 201344 or direct via other TB-PD port has
no impact.

Here's hoping for a bugfix in 22.04 or at least a way to script the
display configuration.

$ cat /sys/class/drm/card0-DP-4/edid | parse-edid
Checksum Correct

Section "Monitor"
 Identifier "LG HDR 4K"
 ModelName "LG HDR 4K"
 VendorName "GSM"
 # Monitor Manufactured week 5 of 2021
 # EDID version 1.4
 # Digital Display
 DisplaySize 600 340
 Gamma 2.20
 Option "DPMS" "true"
 Horizsync 30-135
 VertRefresh 56-61
 # Maximum pixel clock is 560MHz
 #Not giving standard mode: 1152x864, 60Hz
 #Not giving standard mode: 1280x1024, 60Hz
 #Not giving standard mode: 1280x720, 60Hz
 #Not giving standard mode: 1600x900, 60Hz
 #Not giving standard mode: 1920x1080, 60Hz
 #Not giving standard mode: 1280x800, 60Hz

 #Extension block found. Parsing...
 Modeline   "Mode 6" 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync 
+vsync
 Modeline   "Mode 0" 519.38 3840 3864 3880 3896 2160 2214 2219  +hsync 
-vsync
 Modeline   "Mode 1" 266.64 3840 3848 3992 4000 2160 2214 2219  +hsync 
-vsync
 Modeline   "Mode 2" 148.500 1920 2008 2052 2200 1080 1084 1089 1125 +hsync 
+vsync
 Modeline   "Mode 3" 74.250 1280 1390 1420 1650 720 725 730 750 +hsync 
+vsync
 Modeline   "Mode 4" 27.027 720 736 798 858 480 489 495 525 -hsync -vsync
 Modeline   "Mode 5" 25.200 640 656 752 800 480 490 492 525 -hsync -vsync
 Modeline   "Mode 7" 241.50 2560 2608 2640 2720 1440 1443 1448 1481 +hsync 
-vsync
 Option "PreferredMode" "Mode 6"
EndSection

** Affects: wayland (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  I recently started using a Cable-Matters-201355 with my XPS 9380 (8th
  Gen TB3).  The dock supports dual 4K DP @ 60Hz via thunderbolt with PD
  input. (HBR3 compliant USB-C Dock (DSC/DP1.4 support) that uses all 4
  high speed lanes to get dual 60Hz)
  
  Both displays boot mirrored when powered up (Dell Logo, Grub, Kernel
  output) however go blank just as wayland starts up.
  
  Unplugging one of them allows the other to appear at 3840x2160@60Hz,
  after which I have to execute the following process to get both up and
  running.
  
  1) Change the refresh rate of the active display to 30Hz, apply in Screen 
Display settings dialog
  2) Plug the 2nd monitor in; At this point both appear in Screen Display 
dialog @60Hz, but the 2nd remains blank
  3) Change both to 30Hz, apply; At this point the 2nd screen turns on
  4) Change both to 60Hz, apply; At this point both are working at 60Hz, my 
desired end state
  
  Inspection of edid seems fine (below), other than the DisplaySize
- showing 27" instead of 32"
+ showing 27" instead of 32". Monitors are identical.
  
  Previously, I might be able to script my steps above using xrandr, but
  that seems to no longer be the case with 21.10 and wayland. I seem to be
  limited to the Screen Display dialog.
  
  Since I can fix by simply re-applying the settings, it seems like a bug
  on startup.  If I could find a CLI option to allow me to script this
  somehow, that workaround would be just fine for myself.
  
  Lid open/closed, power via the 201344 or direct via other TB-PD port has
  no impact.
  
  Here's hoping for a bugfix in 22.04 or at least a way to script the
  display configuration.
  
- 
  $ cat /sys/class/drm/card0-DP-4/edid | parse-edid
  Checksum Correct
  
  Section "Monitor"
-   Identifier "LG HDR 4K"
-   ModelName "LG HDR 4K"
-   VendorName "GSM"
-   # Monitor Manufactured week 5 of 2021
-   # EDID version 1.4
-   

[Desktop-packages] [Bug 1841826] Re: Going to sleep instead of logging in while lid closed & external display

2021-05-29 Thread iMac
Well, in the case of a Lenovo 4338, a quick google shows it is based on
the SMSC2517, (https://joes-tech-blog.blogspot.com/2017/09/whats-inside-
lenovo-docking-station-for.html) and well, another quick google show
SMSC was aquired by Microchip, and after a third Google, I can tell you
the USB controller chip and see that it even has published suspend-
related errata that they do not plan on fixing that was discovered in
Windows 8 days.

Some excerpts below:

Module 1:
End of User Impacts:
Port might fail to go into SUSPEND.

Solution:
This will not be addressed in a future version of the device.

Module 2:
End of User Impacts:
Device might not enumerate.

Solution:
Use external power on reset circuit (for example, reset circuit with 
MAX809S(V2.9V) voltage supervisor)

https://ww1.microchip.com/downloads/en/DeviceDoc/8628A.pdf

Likely these quirks are not being backported into the drivers, to
workaround in software for certain scenarios, and so are being stumbled
upon with more advanced multi-device scenarios now supported in newer
Ubuntu versions.

I would isolate the dock showing that the scenario works with a
different port replicator/chip, and then either

a) use the other port replicator
b) reach out to the maintainer of the driver, see if you can give him some 
hardware, a reproducable scenario, you might be able to get a fix
c) find a developer for hire, do the same, upstream a patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1841826

Title:
  Going to sleep instead of logging in while lid closed & external
  display

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  I have the above described problem, which seems to be very similar to
  bug #1716160

  - laptop is in docking station and 2 monitors are connected (HDMI,
  DVI)

  - If the lid is closed and I boot the laptop I can input my
  credentials in the login screen and after hitting ENTER the laptop
  goes to sleep

  - If I then press the power button of the docking station the laptop
  wakes up and goes straight to the ubuntu environment w/o any user
  identification

  The device is a Lenovo T420 with classic docking station. Ubuntu
  18.04.3 LTS. Internal graphics Intel integrated grafics and dedicated
  Nvidia Quadro NVS 4200M with propriety driver 390.116. Behavior
  independent of the graphics used.

  I do not know what to do now since the latest state of bug #1716160 is
  "fix released" and so I guess it should be part of the ubuntu version
  I use?

  Thank you very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.4-0ubuntu18.04.1
  ProcVersionSignature: Ubuntu 5.0.0-25.26~18.04.1-generic 5.0.18
  Uname: Linux 5.0.0-25-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Aug 28 20:10:15 2019
  DisplayManager: gdm3
  GsettingsChanges:
   b'org.gnome.shell' b'app-picker-view' b'uint32 1'
   b'org.gnome.shell' b'favorite-apps' redacted by apport
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
   b'org.gnome.desktop.interface' b'show-battery-percentage' b'true'
   b'org.gnome.desktop.interface' b'clock-show-date' b'true'
  InstallationDate: Installed on 2019-08-13 (14 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1841826/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Bug 1841826] Re: Going to sleep instead of logging in while lid closed & external display

2021-05-05 Thread iMac
I would try and figure out what chip is used in the Ultradock;  It might
have been like the Cypress based one I had, which also worked fine before
Ubuntu upgrade, broke, and then worked fine with current Ubuntu after a
firmware update to the chip.

If the Ultradock uses a thunderbolt connection, then getting another
thunderbolt dock via USB-C adapter, like perhaps maybe the $50 one I was
able to upgrade into working state, and testing it, to isolate the software
issue to the platform or the dock may be helpful.

One outcome would be to say to the Ultradock folks to say that other
thunderbolt docks are working, but the Ultradock is not.   i.e. Fix the
dock to work with modern drivers
Another outcome would be that you have 2 thunderbolt docks that behave the
same way to add to the issue.  i.e. Hey Ubuntu neither of these docks (one
of which works on other platforms) is working with my platform

Finding a maintainer and sending a generic non-functional dock (or your
more expensive entire setup if you are an enterprise that wants this
solved) might be a third option, as there is probably a quirk that could be
added to the kernel to make it behave like it used to for broken chips,
another common practice when the hardware vendors don't come up for air on
these issues.  Marvell PCI disk controllers with VT-d enabled comes to mind
:)


On Mon, May 3, 2021 at 12:55 PM Tim Wetzel <1841...@bugs.launchpad.net>
wrote:

> Agree that this is a serious issue. Like EAB, each of our setups remains
> constant: same laptop, dock, display, etc. This issue continues to recur
> probably 11 out of 12 startups when docked lid down. Notably, I have
> almost never seen it when the laptop is running standalone (out of the
> dock).
>
> Note that I do NOT try to hot dock or undock; these are all full
> shutdown/cold starts or manual suspend/later resume. And I rarely
> attempt the suspend/resume. That is only if I've been using the machine
> stand alone and suspended it, expecting to resume again standalone but
> instead wind up at my desk in the office.
>
> On the rare occasions when it's docked and doesn't suspend at the login
> prompt, it will then often throw an error like unable to lock due to
> application when it would (abnormally) suspend; and then when it reaches
> the desktop the wifi won't work or the dock's usb mouse won't work or
> something. Also, on the next restart after that, after suspending and my
> pressing the dock power again, I will often get a timing error instead
> of video on the external display. I have to then open the laptop lid in
> the dock and sometimes can take control to shut down. Other times I have
> to force power down at that point. Once that happens, I have to take the
> laptop out of the dock, start it stand alone, shut it fully down, dock
> it, and try again
>
> PLEASE fix this. Again: this was NOT an issue until the September 2020
> Ubuntu updates to 20.04.1 which I believe also included a kernel update
> to address a security vulnerability? In any case, this started shortly
> after that. And yes: this should not be happening in an LTS version.
>
> --
> You received this bug notification because you are subscribed to a
> duplicate bug report (1907687).
> https://bugs.launchpad.net/bugs/1841826
>
> Title:
>   Going to sleep instead of logging in while lid closed & external
>   display
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1841826/+subscriptions
>

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1841826

Title:
  Going to sleep instead of logging in while lid closed & external
  display

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  I have the above described problem, which seems to be very similar to
  bug #1716160

  - laptop is in docking station and 2 monitors are connected (HDMI,
  DVI)

  - If the lid is closed and I boot the laptop I can input my
  credentials in the login screen and after hitting ENTER the laptop
  goes to sleep

  - If I then press the power button of the docking station the laptop
  wakes up and goes straight to the ubuntu environment w/o any user
  identification

  The device is a Lenovo T420 with classic docking station. Ubuntu
  18.04.3 LTS. Internal graphics Intel integrated grafics and dedicated
  Nvidia Quadro NVS 4200M with propriety driver 390.116. Behavior
  independent of the graphics used.

  I do not know what to do now since the latest state of bug #1716160 is
  "fix released" and so I guess it should be part of the ubuntu version
  I use?

  Thank you very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.4-0ubuntu18.04.1
  ProcVersionSignature: Ubuntu 

[Desktop-packages] [Bug 1841826] Re: Going to sleep instead of logging in while lid closed & external display

2021-03-22 Thread iMac
Firmware update to my CableMatters thunderbolt/USB-C/PD dock seems to
have fixed my issues (no occurances since).

I suppose I have to assume that improved driver support in the newer
kernel may have exposed some issues in the hardware that were fixed with
the update.

Notably I can run dual 1440p with full 4k panel on the laptop open as
well, so one of those 3 display quirks I mentioned also disappeared.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1841826

Title:
  Going to sleep instead of logging in while lid closed & external
  display

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  I have the above described problem, which seems to be very similar to
  bug #1716160

  - laptop is in docking station and 2 monitors are connected (HDMI,
  DVI)

  - If the lid is closed and I boot the laptop I can input my
  credentials in the login screen and after hitting ENTER the laptop
  goes to sleep

  - If I then press the power button of the docking station the laptop
  wakes up and goes straight to the ubuntu environment w/o any user
  identification

  The device is a Lenovo T420 with classic docking station. Ubuntu
  18.04.3 LTS. Internal graphics Intel integrated grafics and dedicated
  Nvidia Quadro NVS 4200M with propriety driver 390.116. Behavior
  independent of the graphics used.

  I do not know what to do now since the latest state of bug #1716160 is
  "fix released" and so I guess it should be part of the ubuntu version
  I use?

  Thank you very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.4-0ubuntu18.04.1
  ProcVersionSignature: Ubuntu 5.0.0-25.26~18.04.1-generic 5.0.18
  Uname: Linux 5.0.0-25-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Aug 28 20:10:15 2019
  DisplayManager: gdm3
  GsettingsChanges:
   b'org.gnome.shell' b'app-picker-view' b'uint32 1'
   b'org.gnome.shell' b'favorite-apps' redacted by apport
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
   b'org.gnome.desktop.interface' b'show-battery-percentage' b'true'
   b'org.gnome.desktop.interface' b'clock-show-date' b'true'
  InstallationDate: Installed on 2019-08-13 (14 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1841826/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1841826] Re: Going to sleep instead of logging in while lid closed & external display

2021-02-26 Thread iMac
And sure enough, there is a firmware update:

https://www.cablematters.com/download/201055_201046/201055_201046_Firmware.zip

https://www.cablematters.com/cs-Downloads.aspx

Will report back...

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1841826

Title:
  Going to sleep instead of logging in while lid closed & external
  display

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  I have the above described problem, which seems to be very similar to
  bug #1716160

  - laptop is in docking station and 2 monitors are connected (HDMI,
  DVI)

  - If the lid is closed and I boot the laptop I can input my
  credentials in the login screen and after hitting ENTER the laptop
  goes to sleep

  - If I then press the power button of the docking station the laptop
  wakes up and goes straight to the ubuntu environment w/o any user
  identification

  The device is a Lenovo T420 with classic docking station. Ubuntu
  18.04.3 LTS. Internal graphics Intel integrated grafics and dedicated
  Nvidia Quadro NVS 4200M with propriety driver 390.116. Behavior
  independent of the graphics used.

  I do not know what to do now since the latest state of bug #1716160 is
  "fix released" and so I guess it should be part of the ubuntu version
  I use?

  Thank you very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.4-0ubuntu18.04.1
  ProcVersionSignature: Ubuntu 5.0.0-25.26~18.04.1-generic 5.0.18
  Uname: Linux 5.0.0-25-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Aug 28 20:10:15 2019
  DisplayManager: gdm3
  GsettingsChanges:
   b'org.gnome.shell' b'app-picker-view' b'uint32 1'
   b'org.gnome.shell' b'favorite-apps' redacted by apport
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
   b'org.gnome.desktop.interface' b'show-battery-percentage' b'true'
   b'org.gnome.desktop.interface' b'clock-show-date' b'true'
  InstallationDate: Installed on 2019-08-13 (14 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1841826/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1841826] Re: Going to sleep instead of logging in while lid closed & external display

2021-02-26 Thread iMac
And the SDK for my Cypress replicator is documented here:

https://www.cypress.com/file/333231/download

Notably: Integrated bootloader to support firmware update over I2C

Maybe I can flash this thing to better support power/display modes,
assuming that is the nature of the issue

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1841826

Title:
  Going to sleep instead of logging in while lid closed & external
  display

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  I have the above described problem, which seems to be very similar to
  bug #1716160

  - laptop is in docking station and 2 monitors are connected (HDMI,
  DVI)

  - If the lid is closed and I boot the laptop I can input my
  credentials in the login screen and after hitting ENTER the laptop
  goes to sleep

  - If I then press the power button of the docking station the laptop
  wakes up and goes straight to the ubuntu environment w/o any user
  identification

  The device is a Lenovo T420 with classic docking station. Ubuntu
  18.04.3 LTS. Internal graphics Intel integrated grafics and dedicated
  Nvidia Quadro NVS 4200M with propriety driver 390.116. Behavior
  independent of the graphics used.

  I do not know what to do now since the latest state of bug #1716160 is
  "fix released" and so I guess it should be part of the ubuntu version
  I use?

  Thank you very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.4-0ubuntu18.04.1
  ProcVersionSignature: Ubuntu 5.0.0-25.26~18.04.1-generic 5.0.18
  Uname: Linux 5.0.0-25-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Aug 28 20:10:15 2019
  DisplayManager: gdm3
  GsettingsChanges:
   b'org.gnome.shell' b'app-picker-view' b'uint32 1'
   b'org.gnome.shell' b'favorite-apps' redacted by apport
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
   b'org.gnome.desktop.interface' b'show-battery-percentage' b'true'
   b'org.gnome.desktop.interface' b'clock-show-date' b'true'
  InstallationDate: Installed on 2019-08-13 (14 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1841826/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1841826] Re: Going to sleep instead of logging in while lid closed & external display

2021-02-26 Thread iMac
Most days, when this occurs, I just open up my lid and/or tap the power
button and it wakes up, and I close the lid again once it is awake.

In my particular case, when I wake up my laptop, my CableMatters
201055-BLK thunderbolt  port replicator sends my dual display 1440p
monitors into 1080p briefly as my 2160p laptop panel comes to life; I
close the lid and everything is back to normal on my dual 1440p panels.

All to say, I can wake up my system by opening the lid and/or hitting
the power button.

If I had to bet, I'd say the thunderbolt port replicator implementation
is part of the problem, as I see quirks with the various gadget drivers
running across it regularily that, thankfully, do not impact me as they
are not in my usual use case:

a) Using PD via the replicator sometimes requires re-plug before laptop detects 
power and I don't think the charging is quite as fast, possibly not ramping up 
the the Max Dell power rates for the port
b) Moving my Logitech keyboard/mouse dongle to the replicator from a local port 
results in sometimes getting keyboard timeouts (even though the mouse is fine 
over same dongle)
c) Opening the lid, the displays do not always switch modes correctly to the 3 
screens (2 x 1440p and 1 x 2160p panel) and sometimes as bad as what appears to 
be a useless 800x600 section of the actual desktop shown on one of the external 
displays, closing the lid always returns to proper dual 1440p 

These are the devices that enumerate on my replicator, with 04b4:f649
being the main one driving the Displays and thunderbolt and the FE and
USB devices attached.

Bus 001 Device 011: ID 0bda:8152 Realtek Semiconductor Corp. RTL8152 Fast 
Ethernet Adapter
Bus 001 Device 010: ID 04b4:f649 Cypress Semiconductor Corp. 
Bus 001 Device 009: ID 1a40:0101 Terminus Technology Inc. Hub

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1841826

Title:
  Going to sleep instead of logging in while lid closed & external
  display

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  I have the above described problem, which seems to be very similar to
  bug #1716160

  - laptop is in docking station and 2 monitors are connected (HDMI,
  DVI)

  - If the lid is closed and I boot the laptop I can input my
  credentials in the login screen and after hitting ENTER the laptop
  goes to sleep

  - If I then press the power button of the docking station the laptop
  wakes up and goes straight to the ubuntu environment w/o any user
  identification

  The device is a Lenovo T420 with classic docking station. Ubuntu
  18.04.3 LTS. Internal graphics Intel integrated grafics and dedicated
  Nvidia Quadro NVS 4200M with propriety driver 390.116. Behavior
  independent of the graphics used.

  I do not know what to do now since the latest state of bug #1716160 is
  "fix released" and so I guess it should be part of the ubuntu version
  I use?

  Thank you very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.4-0ubuntu18.04.1
  ProcVersionSignature: Ubuntu 5.0.0-25.26~18.04.1-generic 5.0.18
  Uname: Linux 5.0.0-25-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Aug 28 20:10:15 2019
  DisplayManager: gdm3
  GsettingsChanges:
   b'org.gnome.shell' b'app-picker-view' b'uint32 1'
   b'org.gnome.shell' b'favorite-apps' redacted by apport
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
   b'org.gnome.desktop.interface' b'show-battery-percentage' b'true'
   b'org.gnome.desktop.interface' b'clock-show-date' b'true'
  InstallationDate: Installed on 2019-08-13 (14 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1841826/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1841826] Re: Going to sleep instead of logging in while lid closed & external display

2021-01-13 Thread iMac
Here are a few more observations on this login sleep issue ('it') :
- not 100% of the time, does this occur
- I experimented with the input devices (logitech) enumerated before / after 
login and saw no change/impact on it from that activity
- I have seen it on a reboot, without any state change on the closed lid
- I have seen it when starting up with the lid open (once in a while I power it 
up and don't immediately close the lid, ending up with 3 displays including the 
panel), after closing the lid to return to 2 display mode, and logging in, it 
has occurred again
- I have seen it after powering up, leaving the computer idle for 15min at 
loging screen, and then login only to have it occur
- The dead giveaway for me visually, is that my wifi icon is missing or 
immediately disaappears as I login, a signal to me the sleep process has 
started.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1841826

Title:
  Going to sleep instead of logging in while lid closed & external
  display

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  I have the above described problem, which seems to be very similar to
  bug #1716160

  - laptop is in docking station and 2 monitors are connected (HDMI,
  DVI)

  - If the lid is closed and I boot the laptop I can input my
  credentials in the login screen and after hitting ENTER the laptop
  goes to sleep

  - If I then press the power button of the docking station the laptop
  wakes up and goes straight to the ubuntu environment w/o any user
  identification

  The device is a Lenovo T420 with classic docking station. Ubuntu
  18.04.3 LTS. Internal graphics Intel integrated grafics and dedicated
  Nvidia Quadro NVS 4200M with propriety driver 390.116. Behavior
  independent of the graphics used.

  I do not know what to do now since the latest state of bug #1716160 is
  "fix released" and so I guess it should be part of the ubuntu version
  I use?

  Thank you very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.4-0ubuntu18.04.1
  ProcVersionSignature: Ubuntu 5.0.0-25.26~18.04.1-generic 5.0.18
  Uname: Linux 5.0.0-25-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Aug 28 20:10:15 2019
  DisplayManager: gdm3
  GsettingsChanges:
   b'org.gnome.shell' b'app-picker-view' b'uint32 1'
   b'org.gnome.shell' b'favorite-apps' redacted by apport
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
   b'org.gnome.desktop.interface' b'show-battery-percentage' b'true'
   b'org.gnome.desktop.interface' b'clock-show-date' b'true'
  InstallationDate: Installed on 2019-08-13 (14 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1841826/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1841826] Re: Going to sleep instead of logging in while lid closed & external display

2021-01-10 Thread iMac
In my case, XPS 13 9380, 20.10, both external monitors via TB3/USB-C ->
2 x HDMI @ 1440p, internal Intel UHD 620

- no nVidia
- two external monitors, lid closed at boot
- no Dropbox

I do use a logitech USB keyboard and mouse (wireless USB dongle) at the
workstation where this occurs, in a different USB-C port than the port
replicator to which my monitors are connected. I will test logging in
with the mouse off, but I am skeptical on the relationship between the
timing of the enumerated mouse input and this bug.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1841826

Title:
  Going to sleep instead of logging in while lid closed & external
  display

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  I have the above described problem, which seems to be very similar to
  bug #1716160

  - laptop is in docking station and 2 monitors are connected (HDMI,
  DVI)

  - If the lid is closed and I boot the laptop I can input my
  credentials in the login screen and after hitting ENTER the laptop
  goes to sleep

  - If I then press the power button of the docking station the laptop
  wakes up and goes straight to the ubuntu environment w/o any user
  identification

  The device is a Lenovo T420 with classic docking station. Ubuntu
  18.04.3 LTS. Internal graphics Intel integrated grafics and dedicated
  Nvidia Quadro NVS 4200M with propriety driver 390.116. Behavior
  independent of the graphics used.

  I do not know what to do now since the latest state of bug #1716160 is
  "fix released" and so I guess it should be part of the ubuntu version
  I use?

  Thank you very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.4-0ubuntu18.04.1
  ProcVersionSignature: Ubuntu 5.0.0-25.26~18.04.1-generic 5.0.18
  Uname: Linux 5.0.0-25-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Aug 28 20:10:15 2019
  DisplayManager: gdm3
  GsettingsChanges:
   b'org.gnome.shell' b'app-picker-view' b'uint32 1'
   b'org.gnome.shell' b'favorite-apps' redacted by apport
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
   b'org.gnome.desktop.interface' b'show-battery-percentage' b'true'
   b'org.gnome.desktop.interface' b'clock-show-date' b'true'
  InstallationDate: Installed on 2019-08-13 (14 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1841826/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1907687] [NEW] Laptop with USB-C external monitors sleeping shortly after login

2020-12-10 Thread iMac
Public bug reported:

Since upgrading to Ubuntu 20.10 on my Dell XPS 9380, I now experience an
unwanted sleep immediately after login.  It seems to only occur when I
am at my office, where I use dual 1440p displays connected via USB-C,
and close my laptop lid immediately after power-on.

Previously, the system would boot and use my external displays without
issue.  Now very shortly after I login (enough time to launch a terminal
a cat my syslog), my system goes into a sleep state.  My workaround is
to simply open the lid until I see the laptop panel light up, and
immediately close it, and then everything returns to normal on my
external displays right back where I left it.

An excerpt from attached dmesg shows wireless ready at 21s and then
deauthenticating at 34s after I login.

 [   21.378061] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
 [   22.528077] kauditd_printk_skb: 35 callbacks suppressed
 [   22.528078] audit: type=1400 audit(1607608802.264:47): apparmor="DENIED" 
operation="open"
profile="/usr/sbin/cupsd" name="/proc/1091/attr/apparmor/current" pid=1091 
comm="cupsd"
requested_mask="r" denied_mask="r" fsuid=0 ouid=0
 [   23.146095] rfkill: input handler disabled
 [   27.861772] logitech-hidpp-device 0003:046D:4023.0006: HID++ 2.0 device 
connected.
 [   30.927312] Bluetooth: RFCOMM TTY layer initialized
 [   30.927317] Bluetooth: RFCOMM socket layer initialized
 [   30.927321] Bluetooth: RFCOMM ver 1.11
 [   31.131406] rfkill: input handler enabled
 [   33.688341] rfkill: input handler disabled
 [   33.900456] audit: type=1400 audit(1607608813.640:48): apparmor="DENIED" 
operation="capable"
profile="/snap/core/10444/usr/lib/snapd/snap-confine" pid=3278 
comm="snap-confine" capability=4
capname="fsetid"
 [   34.031152] wlp2s0: deauthenticating from c4:71:54:05:39:d1 by local choice 
(Reason:
3=DEAUTH_LEAVING)

Output from systemctl confirms my wakeup from a sleep state using my
open-lid method described above. For anyone else on a 9380, it is worth
noting my hostname identifies an older 9365 XPS model I had previously.

 root@imac-XPS-13-9365:~# systemctl status sleep.target
 ● sleep.target - Sleep
  Loaded: loaded (/lib/systemd/system/sleep.target; static)
  Active: inactive (dead)
    Docs: man:systemd.special(7)

 Dec 10 09:00:43 imac-XPS-13-9365 systemd[1]: Reached target Sleep.
 Dec 10 09:00:57 imac-XPS-13-9365 systemd[1]: Stopped target Sleep.

I assume it must be something to do with gdm not detecting external
monitors after login, however I do not close the lid, so I am still not
sure why a sleep state is triggered. Current packages listed below.

 root@imac-XPS-13-9365:~# dpkg -l | grep gdm
 ii  gdm3   3.38.1-2ubuntu1.1   
  amd64
 GNOME Display Manager
 ii  gir1.2-gdm-1.0:amd64   3.38.1-2ubuntu1.1   
  amd64
 GObject introspection data for the GNOME Display Manager
 ii  libgdm1    3.38.1-2ubuntu1.1   
  amd64
 GNOME Display Manager (shared library)
 root@imac-XPS-13-9365:~# dpkg -l | grep wayland
 ii  libva-wayland2:amd64   2.8.0-1 
  amd64
 Video Acceleration (VA) API for Linux -- Wayland runtime
 ii  libwayland-client0:amd64   1.18.0-2~exp1.1 
  amd64
 wayland compositor infrastructure - client library
 ii  libwayland-cursor0:amd64   1.18.0-2~exp1.1 
  amd64
 wayland compositor infrastructure - cursor library
 ii  libwayland-egl1:amd64  1.18.0-2~exp1.1 
  amd64
 wayland compositor infrastructure - EGL library
 ii  libwayland-server0:amd64   1.18.0-2~exp1.1 
  amd64
 wayland compositor infrastructure - server library
 ii  xwayland   2:1.20.9-2ubuntu1.1 
  amd64
 Xwayland X server

I have included my syslog as well, where you can align the dmesg of my
wifi coming on, and then turning off with the following entries.

 Dec 10 09:00:01 imac-XPS-13-9365 kernel: [   21.378061] IPv6: 
ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
...
 Dec 10 09:00:13 imac-XPS-13-9365 kernel: [   34.031152] wlp2s0: 
deauthenticating from c4:71:54:05:39:d1 by local choice (Reason: 
3=DEAUTH_LEAVING)

In between these in my syslog I browsed for lines that might indicate
something triggering sleep, and below are some lines I thought were of
interest  (complete syslog for the period attached).

Everything seems fine up to here ..
 Dec 10 09:00:02 imac-XPS-13-9365 systemd[1]: Startup finished in 15.065s 
(firmware) + 10.533s (loader) + 4.734s (kernel) + 17.648s (userspace) = 47.981s.
...
 Dec 10 09:00:04 imac-XPS-13-9365 gnome-shell[1960]: Registering session with 
GDM

This one is intere

[Desktop-packages] [Bug 1449282] [NEW] lightdm tcp listen requires additional configuration

2015-04-27 Thread iMac
Public bug reported:

In order to enable X11 forwarding from an external host you must
explicitly set the Xserver to listen by overriding the xserver-command.
Previously you could set the xserver-allow-tcp=true and it would do this
automatically.

I would have expected this change in behaviour to show up in
README.Debian.gz but since it did not, perhaps the functionality of the
xserver-allow-tcp=true is not working as expected.

Below shows my before (no TCP listener on 6000) and after (TCP listener
on 6000) lightdm.conf to re-enable the listener after the 15.04 upgrade.

Before (14.10):

~$ cat /etc/lightdm/lightdm.conf

[SeatDefaults]
xserver-allow-tcp=true

After (15.04):

~$ cat /etc/lightdm/lightdm.conf

[SeatDefaults]
xserver-command=X -core -listen tcp
xserver-allow-tcp=true

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: lightdm 1.14.0-0ubuntu2
ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
Uname: Linux 3.19.0-15-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Apr 27 17:33:26 2015
InstallationDate: Installed on 2014-12-18 (130 days ago)
InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
LightdmConfig:
 [SeatDefaults]
 xserver-command=X -core -listen tcp
 xserver-allow-tcp=true
SourcePackage: lightdm
UpgradeStatus: Upgraded to vivid on 2015-04-27 (0 days ago)

** Affects: lightdm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug third-party-packages vivid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/1449282

Title:
  lightdm tcp listen requires additional configuration

Status in lightdm package in Ubuntu:
  New

Bug description:
  In order to enable X11 forwarding from an external host you must
  explicitly set the Xserver to listen by overriding the xserver-
  command.  Previously you could set the xserver-allow-tcp=true and it
  would do this automatically.

  I would have expected this change in behaviour to show up in
  README.Debian.gz but since it did not, perhaps the functionality of
  the xserver-allow-tcp=true is not working as expected.

  Below shows my before (no TCP listener on 6000) and after (TCP
  listener on 6000) lightdm.conf to re-enable the listener after the
  15.04 upgrade.

  Before (14.10):

  ~$ cat /etc/lightdm/lightdm.conf

  [SeatDefaults]
  xserver-allow-tcp=true

  After (15.04):

  ~$ cat /etc/lightdm/lightdm.conf

  [SeatDefaults]
  xserver-command=X -core -listen tcp
  xserver-allow-tcp=true

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: lightdm 1.14.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  Uname: Linux 3.19.0-15-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Apr 27 17:33:26 2015
  InstallationDate: Installed on 2014-12-18 (130 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
  LightdmConfig:
   [SeatDefaults]
   xserver-command=X -core -listen tcp
   xserver-allow-tcp=true
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to vivid on 2015-04-27 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1449282/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1233531] Re: evolution-source-registry crashed with SIGSEGV in g_dbus_object_get_interface()

2013-10-01 Thread iMac
A dpkg -l | grep evolution reveals a mixed set of packages from
3.8.4-0ubuntu1 and 3.8.5-1ubuntu1, will all showing uptodate from
sources (including proposed).

Notably, evolution, evolution-common, evolution-plugins, evolution-ews,
and libevolution are 3.8.4 and evolution-data-server and everything else
is 3.8.5.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/1233531

Title:
  evolution-source-registry crashed with SIGSEGV in
  g_dbus_object_get_interface()

Status in “evolution-data-server” package in Ubuntu:
  Confirmed

Bug description:
  Bug report starts after login without any action, so i don't know what's the 
issue. 
  There are also other software packages installed as the originals from 13.10 
final beta ... hope this information helps! And sorry, i know, my english isn't 
as good as it could be!

  ProblemType: Crash
  DistroRelease: Ubuntu 13.10
  Package: evolution-data-server 3.8.5-1ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-9.16-generic 3.11.2
  Uname: Linux 3.11.0-9-generic x86_64
  ApportVersion: 2.12.5-0ubuntu1
  Architecture: amd64
  Date: Tue Oct  1 09:12:26 2013
  ExecutablePath: /usr/lib/evolution/evolution-source-registry
  InstallationDate: Installed on 2013-09-28 (2 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Beta amd64 (20130925.1)
  MarkForUpload: True
  ProcCmdline: /usr/lib/evolution/evolution-source-registry
  SegvAnalysis:
   Segfault happened at: 0x7f0bc6a6bb1f g_dbus_object_get_interface+15:   
mov(%rbx),%rdi
   PC (0x7f0bc6a6bb1f) ok
   source (%rbx) (0x) not located in a known VMA region (needed 
readable region)!
   destination %rdi ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   g_dbus_object_get_interface () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   e_dbus_object_get_source () from /usr/lib/libebackend-1.2.so.6
   e_server_side_source_load () from /usr/lib/libebackend-1.2.so.6
   ?? () from /usr/lib/libebackend-1.2.so.6
   g_initable_new_valist () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: evolution-source-registry crashed with SIGSEGV in 
g_dbus_object_get_interface()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/1233531/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1169371] [NEW] GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized

2013-04-15 Thread iMac
Public bug reported:

This error occurred following my upgrade to 13.04B2 from 12.10.

Upon loading evolution the error appears in the terminal window
(relevant lines shown below with email obfuscated).  A similar error
message appears in Evolution above the message list, and in the preview
area of emails that are cached from the last successful connection prior
to the upgrade.

Removing the account from Online Accounts appears to have no action.
After removing, the account is still active in evolution (but not
deletable from Evolution Preferences, marked as an online account with
an icon).  Previously, the account would disappear from Evolution when
removed from Online Accounts.

Re-Adding the account to Online Accounts appeared to have no impact.

(evolution:6690): evolution-mail-WARNING **: Failed to refresh folder:
folder://1359550714.3722.1%40imachp/INBOX:
GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find
password with username `x...@.xxx' in credentials

(evolution:6690): evolution-mail-WARNING **: Failed to refresh folder:
folder://1359550714.3722.1%40imachp/INBOX:
GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find
password with username `x...@.xxx' in credentials

** (evolution:6690): WARNING **: search_address_in_addressbooks: Unable to open 
addressbook 'Contacts': Cannot open book: 
GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find password 
with username `x...@.xxx' in credentials
^C

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: evolution 3.6.4-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-18.28-generic 3.8.6
Uname: Linux 3.8.0-18-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.9.2-0ubuntu8
Architecture: amd64
Date: Mon Apr 15 20:33:42 2013
MarkForUpload: True
SourcePackage: evolution
UpgradeStatus: Upgraded to raring on 2013-04-13 (2 days ago)

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug raring

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1169371

Title:
  GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized

Status in “evolution” package in Ubuntu:
  New

Bug description:
  This error occurred following my upgrade to 13.04B2 from 12.10.

  Upon loading evolution the error appears in the terminal window
  (relevant lines shown below with email obfuscated).  A similar error
  message appears in Evolution above the message list, and in the
  preview area of emails that are cached from the last successful
  connection prior to the upgrade.

  Removing the account from Online Accounts appears to have no action.
  After removing, the account is still active in evolution (but not
  deletable from Evolution Preferences, marked as an online account with
  an icon).  Previously, the account would disappear from Evolution when
  removed from Online Accounts.

  Re-Adding the account to Online Accounts appeared to have no impact.

  (evolution:6690): evolution-mail-WARNING **: Failed to refresh folder:
  folder://1359550714.3722.1%40imachp/INBOX:
  GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find
  password with username `x...@.xxx' in credentials

  (evolution:6690): evolution-mail-WARNING **: Failed to refresh folder:
  folder://1359550714.3722.1%40imachp/INBOX:
  GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find
  password with username `x...@.xxx' in credentials

  ** (evolution:6690): WARNING **: search_address_in_addressbooks: Unable to 
open addressbook 'Contacts': Cannot open book: 
GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find password 
with username `x...@.xxx' in credentials
  ^C

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: evolution 3.6.4-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-18.28-generic 3.8.6
  Uname: Linux 3.8.0-18-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: amd64
  Date: Mon Apr 15 20:33:42 2013
  MarkForUpload: True
  SourcePackage: evolution
  UpgradeStatus: Upgraded to raring on 2013-04-13 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1169371/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1169371] Re: GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized

2013-04-15 Thread iMac
** Bug watch added: GNOME Bug Tracker #698099
   https://bugzilla.gnome.org/show_bug.cgi?id=698099

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=698099
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1169371

Title:
  GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  This error occurred following my upgrade to 13.04B2 from 12.10.

  Upon loading evolution the error appears in the terminal window
  (relevant lines shown below with email obfuscated).  A similar error
  message appears in Evolution above the message list, and in the
  preview area of emails that are cached from the last successful
  connection prior to the upgrade.

  Removing the account from Online Accounts appears to have no action.
  After removing, the account is still active in evolution (but not
  deletable from Evolution Preferences, marked as an online account with
  an icon).  Previously, the account would disappear from Evolution when
  removed from Online Accounts.

  Re-Adding the account to Online Accounts appeared to have no impact.

  (evolution:6690): evolution-mail-WARNING **: Failed to refresh folder:
  folder://1359550714.3722.1%40imachp/INBOX:
  GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find
  password with username `x...@.xxx' in credentials

  (evolution:6690): evolution-mail-WARNING **: Failed to refresh folder:
  folder://1359550714.3722.1%40imachp/INBOX:
  GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find
  password with username `x...@.xxx' in credentials

  ** (evolution:6690): WARNING **: search_address_in_addressbooks: Unable to 
open addressbook 'Contacts': Cannot open book: 
GDBus.Error:org.gnome.OnlineAccounts.Error.NotAuthorized: Did not find password 
with username `x...@.xxx' in credentials
  ^C

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: evolution 3.6.4-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-18.28-generic 3.8.6
  Uname: Linux 3.8.0-18-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: amd64
  Date: Mon Apr 15 20:33:42 2013
  MarkForUpload: True
  SourcePackage: evolution
  UpgradeStatus: Upgraded to raring on 2013-04-13 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/1169371/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1086494] Re: GtkScrolledWindow is mapped but visible child GtkScrollbar is not mapped

2013-02-24 Thread iMac
I see this with evolution and overlay scrollbars disabled.

I disabled overlay scrollbars with:

$gsettings set com.canonical.desktop.interface scrollbar-mode normal


(evolution:13228): Gtk-WARNING **: GtkScrolledWindow 0x7f8fa3f4faa0 is mapped 
but visible child GtkScrollbar 0x7f8fa409c540 is not mapped

My versions from current Ubuntu 12.10 (with proposed, updates sources enabled)
ii  evolution 3.6.2-0ubuntu0.1  
ii  libgtk-3-0:amd64  3.6.0-0ubuntu3.2

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to rhythmbox in Ubuntu.
https://bugs.launchpad.net/bugs/1086494

Title:
  GtkScrolledWindow is mapped but visible child GtkScrollbar is not
  mapped

Status in GTK+ GUI Toolkit:
  New
Status in “gtk+3.0” package in Ubuntu:
  Triaged
Status in “overlay-scrollbar” package in Ubuntu:
  Confirmed
Status in “rhythmbox” package in Ubuntu:
  Confirmed
Status in “totem” package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 13.04 (Raring Ringtail) Unity:

  I don't now if this is GtkScrolledWindow or overlay scrollbars bug.

  I got these warning in Totem Movie Player.

  Test case:

  Open totem - Fill with items playlist panel from right of player
  until scrollbar show-up - scroll to botton of panel - import more
  playlist items from playlist file, and this warning come out:

  (totem:4060): Gtk-WARNING **: GtkScrolledWindow 0xb81ef2b0 is mapped
  but visible child GtkScrollbar 0xb82bc2a8 is not mapped

  This bug warning show in Rhythmbox Music Player if import playlist
  items from file:

  (rhythmbox:4149): Gtk-WARNING **: RBPropertyView 0x9ee8000 is mapped
  but visible child GtkScrollbar 0xa08fe90 is not mapped

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/1086494/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1106472] Re: Evolution gets stuck on IMAP server PING

2013-02-24 Thread iMac
** Bug watch added: GNOME Bug Tracker #601727
   https://bugzilla.gnome.org/show_bug.cgi?id=601727

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=601727
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1106472

Title:
  Evolution gets stuck on IMAP server PING

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  This bug is reported in Evolution's bugzilla, but it present in Ubuntu
  12.04. My particular IMAP server does not respond to the 'pings' that
  Evolution reports making, possibly to keep alive a server connection
  (I am not sure exactly what type of pings these are). Evolution sits
  there waiting for the ping to complete, but since my server doesn't
  respond, all of Evolution's actions are queued up behind this
  unresponsive event. Makes use of Evolution very slow/frustrating.
  Evolution needs to provide a way to shorten the timeout or disable
  this ping activity.

  https://bugzilla.gnome.org/show_bug.cgi?id=601727
  https://answers.launchpad.net/ubuntu/+source/evolution/+question/6709

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/1106472/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1073149] [NEW] Evolution Fails to Start with ERROR **: Error calling StartServiceByName

2012-10-30 Thread iMac
Public bug reported:

Running current Evolution 3.6.0-0ubuntu3 on 12.10.  Today, starting
evolution from command line shows the following message and evolution
fails to start.

ERROR **: Error calling StartServiceByName for
org.gnome.evolution.dataserver.Sources0: Timeout was reached

I have EWS, Gmail and Personal IMAP accounts configured in Evolution.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: evolution 3.6.0-0ubuntu3
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Tue Oct 30 09:11:57 2012
MarkForUpload: True
SourcePackage: evolution
UpgradeStatus: Upgraded to quantal on 2012-10-14 (15 days ago)

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug quantal running-unity

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1073149

Title:
  Evolution Fails to Start with ERROR **: Error calling
  StartServiceByName

Status in “evolution” package in Ubuntu:
  New

Bug description:
  Running current Evolution 3.6.0-0ubuntu3 on 12.10.  Today, starting
  evolution from command line shows the following message and evolution
  fails to start.

  ERROR **: Error calling StartServiceByName for
  org.gnome.evolution.dataserver.Sources0: Timeout was reached

  I have EWS, Gmail and Personal IMAP accounts configured in Evolution.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: evolution 3.6.0-0ubuntu3
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: amd64
  Date: Tue Oct 30 09:11:57 2012
  MarkForUpload: True
  SourcePackage: evolution
  UpgradeStatus: Upgraded to quantal on 2012-10-14 (15 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1073149/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1073149] Re: Evolution Fails to Start with ERROR **: Error calling StartServiceByName

2012-10-30 Thread iMac
A closer look, it appears that evolution is segfaulting.  I actually
expected apport to pick these up on its own, but I guess something must
have changed with the automatic crash detection, despite having
enabled=1 in my /etc/default/apport.

root@imachp:~# dmesg | grep evol
[  193.201403] evolution-sourc[3263]: segfault at 7fcc9b1e ip 
7fcc9b25885f sp 7fffd11315b0 error 4 in 
libglib-2.0.so.0.3400.0[7fcc9b1f6000+f5000]
[  204.402702] evolution-sourc[3514]: segfault at 7fc77233 ip 
7fc77236c3a7 sp 7fff69e46bd0 error 7 in 
libglib-2.0.so.0.3400.0[7fc772338000+f5000]
[ 4902.67] evolution-sourc[4510]: segfault at 7fed469f ip 
7fed46a6185f sp 7fffd32913e0 error 4 in 
libglib-2.0.so.0.3400.0[7fed469ff000+f5000]
[ 4902.909344] evolution[4502] trap int3 ip:7f28837ccc7f sp:7fff88b3c270 error:0
[ 4981.085751] evolution-sourc[4542]: segfault at 66 ip 7f97db38b85f sp 
7fff003affb0 error 4 in libglib-2.0.so.0.3400.0[7f97db329000+f5000]
[ 4981.195567] evolution[4534] trap int3 ip:7f8ae3d6ec7f sp:7fff113d1950 error:0
[ 5027.014877] evolution[4623] trap int3 ip:7fc1eb753c7f sp:7be2bab0 error:0

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1073149

Title:
  Evolution Fails to Start with ERROR **: Error calling
  StartServiceByName

Status in “evolution” package in Ubuntu:
  New

Bug description:
  Running current Evolution 3.6.0-0ubuntu3 on 12.10.  Today, starting
  evolution from command line shows the following message and evolution
  fails to start.

  ERROR **: Error calling StartServiceByName for
  org.gnome.evolution.dataserver.Sources0: Timeout was reached

  I have EWS, Gmail and Personal IMAP accounts configured in Evolution.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: evolution 3.6.0-0ubuntu3
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: amd64
  Date: Tue Oct 30 09:11:57 2012
  MarkForUpload: True
  SourcePackage: evolution
  UpgradeStatus: Upgraded to quantal on 2012-10-14 (15 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1073149/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 853905] Re: Contact birthdays missing from Calendar

2012-06-04 Thread iMac
You should not have to, as it is already part of Oneric or newer, per
the Fix Released tag next to the Ubuntu package at the top of this bug
report and noted in the revision log below (also linked above).

http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/oneiric/evolution-
data-server/oneiric/revision/165

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/853905

Title:
  Contact birthdays missing from Calendar

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  Fix Released

Bug description:
  Both local and Google Contact birthdays are missing from the evolution
  calendar.  This is the case for both local contacts and my Google
  contacts.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Mon Sep 19 10:20:21 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (10 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/853905/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 857294] Re: Creating hotspot leads to endless connect/disconnect loop

2012-04-25 Thread iMac
The IPV6 was not my issue (or might have been secondary).   Even with
Ignore my dnsmasq services are not responding to DHCP requests.
Things look good from the process output (which shows flags, etc for
dnsmasq) but no joy when inspecting the wire for DHCP request/response.
A separate issue in any event.

I did note that when I had IPV6 enabled (set to automatic) that dnsmasq
seemed to function and support it based on the syslog output, so perhaps
the lack of IPV6 support has been addressed in 12.04.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/857294

Title:
  Creating hotspot leads to endless connect/disconnect loop

Status in “dnsmasq” package in Ubuntu:
  Invalid
Status in “network-manager” package in Ubuntu:
  Fix Released

Bug description:
  - Create Hotspot via System Settings  Network  Wireless  Hotspot or 
manually in the network-manager
  - What I expected:
  * Hotspot is created, clients can use internet connection
  - What happened instead:
  * The new connection connects and disconnects after a second, when 
autoconnect is enabled, this happens very fast in a endless loop.

  I think this error message in the log causes the failure:
   dnsmasq[5213]: failed to create listening socket for 10.42.43.1: Address 
already in use
   dnsmasq[5213]: FAILED to start up

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: network-manager 0.9.1.90-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  CRDA: Error: [Errno 2] Datei oder Verzeichnis nicht gefunden
  Date: Fri Sep 23 13:06:40 2011
  EcryptfsInUse: Yes
  IfupdownConfig:
   auto lo
   iface lo inet loopback
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Beta amd64 (20110901)
  IpRoute:
   default via 192.168.2.1 dev eth0  proto static 
   169.254.0.0/16 dev eth0  scope link  metric 1000 
   192.168.2.0/24 dev eth0  proto kernel  scope link  src 192.168.2.10
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to oneiric on 2011-09-23 (0 days ago)
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2011-09-14T08:20:06.811759

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/857294/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 979040] [NEW] File Browser Navigation missing Parent Directory icon

2012-04-11 Thread iMac
Public bug reported:

I believe this is actually a regression in the Nautilus UI, or there is
a non-intuitive preference I can not seem to locate.

At one point in earlier Nautilus versions (not sure when, maybe 11.04 or
earlier) there was always an Up Arrow icon that allowed you to
navigate up the directory tree to the parent directory.   I can't seem
to get this icon back in preferences, and it makes it quite difficult to
navigate above the current directory.

I have Places in my sidebar, where common directory locations I use
can be found, along wit the standard Desktop, Mount Points, etc.

The typical use case is that I start in one of these Places and decide
I want to go somewhere else in my home directory.  If that other
location is also not a Place then I have to manually punch in a
location above the directory I want (if I can't remember it's exact
location to tab-complete in the location bar) and navigate down to it.
There is no way to use the mouse to move up to the parent directory of a
subfolder when you have navigated directly to that subfolder using the
Places sidebar.

It is a minor inconvenience, but one I find myself questioning quite
frequently.  Finally I exhausted all the preferences and menus looking
for how to turn this back on.   To my surprise, there didn't seem to be
an option.

As a more detailed use case, today I had two tabs open in Nautilus, and
was executing a Dropbox Cleanup where I move stuff out of my over-
used-cluttered dropbox folder into more permanent and organized
locations.  This is one of my few GUI file manager activities, as I find
myself using command line with tab completion and wildcards when I am
doing most file operations.  In the Nautilus UI, not being able to move
around the directory structure and execute cut/copy/paste operations
entirely with my mouse seems counter-intuitive to the design goals of a
graphical file manager.   Of course I can switch to the tree sidebar
that does give access to the whole directory tree with a mouse, but I
prefer the Places sidebar, which I believe is the default interface.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: nautilus 1:3.4.0-0ubuntu2
ProcVersionSignature: Ubuntu 3.2.0-22.35-generic 3.2.14
Uname: Linux 3.2.0-22-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu1
Architecture: amd64
Date: Wed Apr 11 11:38:11 2012
GsettingsChanges:
 org.gnome.nautilus.window-state geometry '754x800+65+221'
 org.gnome.nautilus.window-state maximized true
 org.gnome.nautilus.window-state sidebar-width 253
 org.gnome.nautilus.window-state start-with-status-bar true
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: nautilus
UpgradeStatus: Upgraded to precise on 2012-03-13 (28 days ago)

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/979040

Title:
  File Browser Navigation missing Parent Directory icon

Status in “nautilus” package in Ubuntu:
  New

Bug description:
  I believe this is actually a regression in the Nautilus UI, or there
  is a non-intuitive preference I can not seem to locate.

  At one point in earlier Nautilus versions (not sure when, maybe 11.04
  or earlier) there was always an Up Arrow icon that allowed you to
  navigate up the directory tree to the parent directory.   I can't seem
  to get this icon back in preferences, and it makes it quite difficult
  to navigate above the current directory.

  I have Places in my sidebar, where common directory locations I use
  can be found, along wit the standard Desktop, Mount Points, etc.

  The typical use case is that I start in one of these Places and
  decide I want to go somewhere else in my home directory.  If that
  other location is also not a Place then I have to manually punch in
  a location above the directory I want (if I can't remember it's exact
  location to tab-complete in the location bar) and navigate down to it.
  There is no way to use the mouse to move up to the parent directory of
  a subfolder when you have navigated directly to that subfolder using
  the Places sidebar.

  It is a minor inconvenience, but one I find myself questioning quite
  frequently.  Finally I exhausted all the preferences and menus looking
  for how to turn this back on.   To my surprise, there didn't seem to
  be an option.

  As a more detailed use case, today I had two tabs open in Nautilus,
  and was executing a Dropbox Cleanup where I move stuff out of my
  over-used-cluttered dropbox folder into more permanent and organized
  locations.  This is one of my few GUI file manager activities, as I
  find myself using command line with tab completion and wildcards when
  I am doing most file operations.  In the Nautilus UI, not being able
  to move around the directory 

[Desktop-packages] [Bug 979040] Re: File Browser Navigation missing Parent Directory icon

2012-04-11 Thread iMac
** Description changed:

  I believe this is actually a regression in the Nautilus UI, or there is
  a non-intuitive preference I can not seem to locate.
  
  At one point in earlier Nautilus versions (not sure when, maybe 11.04 or
  earlier) there was always an Up Arrow icon that allowed you to
  navigate up the directory tree to the parent directory.   I can't seem
  to get this icon back in preferences, and it makes it quite difficult to
  navigate above the current directory.
  
  I have Places in my sidebar, where common directory locations I use
  can be found, along wit the standard Desktop, Mount Points, etc.
  
  The typical use case is that I start in one of these Places and decide
  I want to go somewhere else in my home directory.  If that other
  location is also not a Place then I have to manually punch in a
  location above the directory I want (if I can't remember it's exact
  location to tab-complete in the location bar) and navigate down to it.
  There is no way to use the mouse to move up to the parent directory of a
  subfolder when you have navigated directly to that subfolder using the
  Places sidebar.
  
  It is a minor inconvenience, but one I find myself questioning quite
  frequently.  Finally I exhausted all the preferences and menus looking
  for how to turn this back on.   To my surprise, there didn't seem to be
  an option.
  
  As a more detailed use case, today I had two tabs open in Nautilus, and
  was executing a Dropbox Cleanup where I move stuff out of my over-
  used-cluttered dropbox folder into more permanent and organized
  locations.  This is one of my few GUI file manager activities, as I find
  myself using command line with tab completion and wildcards when I am
- doing most file operations.  In the Nautilus UI, noot being able to move
+ doing most file operations.  In the Nautilus UI, not being able to move
  around the directory structure and execute cut/copy/paste operations
  entirely with my mouse seems counter-intuitive to the design goals of a
  graphical file manager.   Of course I can switch to the tree sidebar
  that does give access to the whole directory tree with a mouse, but I
  prefer the Places sidebar, which I believe is the default interface.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: nautilus 1:3.4.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-22.35-generic 3.2.14
  Uname: Linux 3.2.0-22-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu1
  Architecture: amd64
  Date: Wed Apr 11 11:38:11 2012
  GsettingsChanges:
-  org.gnome.nautilus.window-state geometry '754x800+65+221'
-  org.gnome.nautilus.window-state maximized true
-  org.gnome.nautilus.window-state sidebar-width 253
-  org.gnome.nautilus.window-state start-with-status-bar true
+  org.gnome.nautilus.window-state geometry '754x800+65+221'
+  org.gnome.nautilus.window-state maximized true
+  org.gnome.nautilus.window-state sidebar-width 253
+  org.gnome.nautilus.window-state start-with-status-bar true
  ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  LANG=en_US.utf8
-  SHELL=/bin/bash
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_US.utf8
+  SHELL=/bin/bash
  SourcePackage: nautilus
  UpgradeStatus: Upgraded to precise on 2012-03-13 (28 days ago)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/979040

Title:
  File Browser Navigation missing Parent Directory icon

Status in “nautilus” package in Ubuntu:
  New

Bug description:
  I believe this is actually a regression in the Nautilus UI, or there
  is a non-intuitive preference I can not seem to locate.

  At one point in earlier Nautilus versions (not sure when, maybe 11.04
  or earlier) there was always an Up Arrow icon that allowed you to
  navigate up the directory tree to the parent directory.   I can't seem
  to get this icon back in preferences, and it makes it quite difficult
  to navigate above the current directory.

  I have Places in my sidebar, where common directory locations I use
  can be found, along wit the standard Desktop, Mount Points, etc.

  The typical use case is that I start in one of these Places and
  decide I want to go somewhere else in my home directory.  If that
  other location is also not a Place then I have to manually punch in
  a location above the directory I want (if I can't remember it's exact
  location to tab-complete in the location bar) and navigate down to it.
  There is no way to use the mouse to move up to the parent directory of
  a subfolder when you have navigated directly to that subfolder using
  the Places sidebar.

  It is a minor inconvenience, but one I find myself questioning quite
  frequently.  Finally I exhausted all the preferences and menus looking
  for how to turn this back on.   To my surprise, there didn't seem to
  be an option.

  As a more detailed use case, today I had two tabs open in Nautilus,
  and 

[Desktop-packages] [Bug 979040] Re: File Browser Navigation missing Parent Directory icon

2012-04-11 Thread iMac
I think this should get a regression tag based on the observation of the
feature in previous Ubuntu versions as shown in my attachment. The
upstream bug report has been added as well.

** Attachment added: Comparison of Nautilus Location Bar across Ubuntu 
versions
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/979040/+attachment/3048608/+files/UbuntuFileBrowser.png

** Bug watch added: GNOME Bug Tracker #673945
   https://bugzilla.gnome.org/show_bug.cgi?id=673945

** Also affects: nautilus via
   https://bugzilla.gnome.org/show_bug.cgi?id=673945
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/979040

Title:
  File Browser Navigation missing Parent Directory icon

Status in Nautilus:
  Unknown
Status in “nautilus” package in Ubuntu:
  Confirmed

Bug description:
  I believe this is actually a regression in the Nautilus UI, or there
  is a non-intuitive preference I can not seem to locate.

  At one point in earlier Nautilus versions (not sure when, maybe 11.04
  or earlier) there was always an Up Arrow icon that allowed you to
  navigate up the directory tree to the parent directory.   I can't seem
  to get this icon back in preferences, and it makes it quite difficult
  to navigate above the current directory.

  I have Places in my sidebar, where common directory locations I use
  can be found, along wit the standard Desktop, Mount Points, etc.

  The typical use case is that I start in one of these Places and
  decide I want to go somewhere else in my home directory.  If that
  other location is also not a Place then I have to manually punch in
  a location above the directory I want (if I can't remember it's exact
  location to tab-complete in the location bar) and navigate down to it.
  There is no way to use the mouse to move up to the parent directory of
  a subfolder when you have navigated directly to that subfolder using
  the Places sidebar.

  It is a minor inconvenience, but one I find myself questioning quite
  frequently.  Finally I exhausted all the preferences and menus looking
  for how to turn this back on.   To my surprise, there didn't seem to
  be an option.

  As a more detailed use case, today I had two tabs open in Nautilus,
  and was executing a Dropbox Cleanup where I move stuff out of my
  over-used-cluttered dropbox folder into more permanent and organized
  locations.  This is one of my few GUI file manager activities, as I
  find myself using command line with tab completion and wildcards when
  I am doing most file operations.  In the Nautilus UI, not being able
  to move around the directory structure and execute cut/copy/paste
  operations entirely with my mouse seems counter-intuitive to the
  design goals of a graphical file manager.   Of course I can switch to
  the tree sidebar that does give access to the whole directory tree
  with a mouse, but I prefer the Places sidebar, which I believe is
  the default interface.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: nautilus 1:3.4.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-22.35-generic 3.2.14
  Uname: Linux 3.2.0-22-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu1
  Architecture: amd64
  Date: Wed Apr 11 11:38:11 2012
  GsettingsChanges:
   org.gnome.nautilus.window-state geometry '754x800+65+221'
   org.gnome.nautilus.window-state maximized true
   org.gnome.nautilus.window-state sidebar-width 253
   org.gnome.nautilus.window-state start-with-status-bar true
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: nautilus
  UpgradeStatus: Upgraded to precise on 2012-03-13 (28 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/nautilus/+bug/979040/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 979040] Re: File Browser Navigation missing Parent Directory icon

2012-04-11 Thread iMac
Thats the bug; In my case I can not get to the pathbar made of buttons.
I'm going to rename to be clear.

** Summary changed:

- File Browser Navigation missing Parent Directory icon
+ File Browser Navigation missing default icon Path Bar

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/979040

Title:
  File Browser Navigation missing default icon Path Bar

Status in Nautilus:
  New
Status in “nautilus” package in Ubuntu:
  Triaged

Bug description:
  I believe this is actually a regression in the Nautilus UI, or there
  is a non-intuitive preference I can not seem to locate.

  At one point in earlier Nautilus versions (not sure when, maybe 11.04
  or earlier) there was always an Up Arrow icon that allowed you to
  navigate up the directory tree to the parent directory.   I can't seem
  to get this icon back in preferences, and it makes it quite difficult
  to navigate above the current directory.

  I have Places in my sidebar, where common directory locations I use
  can be found, along wit the standard Desktop, Mount Points, etc.

  The typical use case is that I start in one of these Places and
  decide I want to go somewhere else in my home directory.  If that
  other location is also not a Place then I have to manually punch in
  a location above the directory I want (if I can't remember it's exact
  location to tab-complete in the location bar) and navigate down to it.
  There is no way to use the mouse to move up to the parent directory of
  a subfolder when you have navigated directly to that subfolder using
  the Places sidebar.

  It is a minor inconvenience, but one I find myself questioning quite
  frequently.  Finally I exhausted all the preferences and menus looking
  for how to turn this back on.   To my surprise, there didn't seem to
  be an option.

  As a more detailed use case, today I had two tabs open in Nautilus,
  and was executing a Dropbox Cleanup where I move stuff out of my
  over-used-cluttered dropbox folder into more permanent and organized
  locations.  This is one of my few GUI file manager activities, as I
  find myself using command line with tab completion and wildcards when
  I am doing most file operations.  In the Nautilus UI, not being able
  to move around the directory structure and execute cut/copy/paste
  operations entirely with my mouse seems counter-intuitive to the
  design goals of a graphical file manager.   Of course I can switch to
  the tree sidebar that does give access to the whole directory tree
  with a mouse, but I prefer the Places sidebar, which I believe is
  the default interface.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: nautilus 1:3.4.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-22.35-generic 3.2.14
  Uname: Linux 3.2.0-22-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu1
  Architecture: amd64
  Date: Wed Apr 11 11:38:11 2012
  GsettingsChanges:
   org.gnome.nautilus.window-state geometry '754x800+65+221'
   org.gnome.nautilus.window-state maximized true
   org.gnome.nautilus.window-state sidebar-width 253
   org.gnome.nautilus.window-state start-with-status-bar true
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: nautilus
  UpgradeStatus: Upgraded to precise on 2012-03-13 (28 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/nautilus/+bug/979040/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 979040] Re: File Browser Navigation missing default icon Path Bar

2012-04-11 Thread iMac
Reset.. back to how I expect it.  Not sure how/why it changed, but reset
= defualt = fixed.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/979040

Title:
  File Browser Navigation missing default icon Path Bar

Status in Nautilus:
  New
Status in “nautilus” package in Ubuntu:
  Triaged

Bug description:
  I believe this is actually a regression in the Nautilus UI, or there
  is a non-intuitive preference I can not seem to locate.

  At one point in earlier Nautilus versions (not sure when, maybe 11.04
  or earlier) there was always an Up Arrow icon that allowed you to
  navigate up the directory tree to the parent directory.   I can't seem
  to get this icon back in preferences, and it makes it quite difficult
  to navigate above the current directory.

  I have Places in my sidebar, where common directory locations I use
  can be found, along wit the standard Desktop, Mount Points, etc.

  The typical use case is that I start in one of these Places and
  decide I want to go somewhere else in my home directory.  If that
  other location is also not a Place then I have to manually punch in
  a location above the directory I want (if I can't remember it's exact
  location to tab-complete in the location bar) and navigate down to it.
  There is no way to use the mouse to move up to the parent directory of
  a subfolder when you have navigated directly to that subfolder using
  the Places sidebar.

  It is a minor inconvenience, but one I find myself questioning quite
  frequently.  Finally I exhausted all the preferences and menus looking
  for how to turn this back on.   To my surprise, there didn't seem to
  be an option.

  As a more detailed use case, today I had two tabs open in Nautilus,
  and was executing a Dropbox Cleanup where I move stuff out of my
  over-used-cluttered dropbox folder into more permanent and organized
  locations.  This is one of my few GUI file manager activities, as I
  find myself using command line with tab completion and wildcards when
  I am doing most file operations.  In the Nautilus UI, not being able
  to move around the directory structure and execute cut/copy/paste
  operations entirely with my mouse seems counter-intuitive to the
  design goals of a graphical file manager.   Of course I can switch to
  the tree sidebar that does give access to the whole directory tree
  with a mouse, but I prefer the Places sidebar, which I believe is
  the default interface.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: nautilus 1:3.4.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-22.35-generic 3.2.14
  Uname: Linux 3.2.0-22-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu1
  Architecture: amd64
  Date: Wed Apr 11 11:38:11 2012
  GsettingsChanges:
   org.gnome.nautilus.window-state geometry '754x800+65+221'
   org.gnome.nautilus.window-state maximized true
   org.gnome.nautilus.window-state sidebar-width 253
   org.gnome.nautilus.window-state start-with-status-bar true
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: nautilus
  UpgradeStatus: Upgraded to precise on 2012-03-13 (28 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/nautilus/+bug/979040/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 867682] Re: telepathy-gabble crashed with signal 5 in g_simple_async_result_complete()

2012-04-07 Thread iMac
In my case, 12.04, current beta, upon suspend resume 0.16.0-0ubuntu1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/867682

Title:
  telepathy-gabble crashed with signal 5 in
  g_simple_async_result_complete()

Status in “telepathy-gabble” package in Ubuntu:
  Confirmed

Bug description:
  empathy crashed once network connection went down

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: telepathy-gabble 0.13.5-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-12.19-generic 3.0.4
  Uname: Linux 3.0.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu2
  Architecture: amd64
  Date: Tue Oct  4 22:18:37 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/telepathy/telepathy-gabble
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Beta amd64 (20111001)
  ProcCmdline: /usr/lib/telepathy/telepathy-gabble
  Signal: 5
  SourcePackage: telepathy-gabble
  StacktraceTop:
   ?? ()
   g_simple_async_result_complete () from 
/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? ()
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   g_simple_async_result_complete () from 
/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: telepathy-gabble crashed with signal 5 in 
g_simple_async_result_complete()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-gabble/+bug/867682/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 957695] Re: New or modified contacts sync incorrectly to Google My Contacts

2012-04-02 Thread iMac
resolved and working great for me so far, already saved me time today.
thanks MTL

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/957695

Title:
  New or modified contacts sync incorrectly to Google My Contacts

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Evolution was not properly assigning groups to new or modified
  contacts.

  Specifically, new contacts would often land in Other Contacts
  instead of My Contacts when using the quick Add to Contacts... for
  email addresses.

  Additionally existing Google My Contacts that were modified in
  Evolution, would find themselves in the Google Personal group
  online, which is Google's privacy group meaning those contacts would
  no longer show up on other contact-synced devices like Android phones
  and tablets without explicit search for the contact on those devices.

  There is a patch upstream,

  https://bugzilla.gnome.org/show_bug.cgi?id=663324

  This problem existed with 11.10 and now current 12.04 Beta.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Sat Mar 17 00:56:27 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to precise on 2012-03-13 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/957695/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 955707] Re: Unable to modify or update Google calendar events

2012-04-02 Thread iMac
resolved and working great for me so far, thanks MTL

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/955707

Title:
  Unable to modify or update Google calendar events

Status in Evolution Data Server:
  Fix Released
Status in “evolution-data-server” package in Ubuntu:
  Fix Released

Bug description:
  When attempting to save a modified event (update a meeting date and time to 
tomorrow), evolution returns:
  »Cannot modify calendar object: Unexpected HTTP status code 412 returned
  (Existing event has different ETag)«

  This also occurs when trying to update attendee status after receiving
  a confirmation by email.

  I am using current 3.2.3-0ubuntu4 on 12.04 Beta.

  The upstream patch is a workaround for a bug in libical48, which
  apparently has an escape character issue, as described upstream but
  patched in evolution to workaround.

  I tested the patch, re-attached here against current 3.2.3 sources,
  and it is simple and applies cleanly and resolves this problem
  completely.

  upstream: https://bugzilla.gnome.org/show_bug.cgi?id=669003

  Steps to Reproduce:
  1. Configure Online-Accounts OR add a Google Calendar manually
  2. Open Calendar, enter password
  3. Try to change or delete existing event
  4. Get error message: Cannot modify calendar object: Unexpected HTTP status
  code 412 returned (Existing event has different ETag)

  Actual results:
  Not able to manage already existing events.

  Expected results:
  Should be able to manage already existing events.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution-data-server 3.2.3-0ubuntu4
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Thu Mar 15 00:11:05 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution-data-server
  UpgradeStatus: Upgraded to precise on 2012-03-13 (1 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/955707/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 957695] Re: New or modified contacts sync incorrectly to Google My Contacts

2012-03-30 Thread iMac
Upstream has committed, and a rebaselined version for 3-2 is working
fine against current sources.  This effectively makes Google Contacts
work, so it would be great to include with 12.04 pls.

Without it, when you add a Google contact two very confusing things happen
a) initially it does not appear in your Google MyContacts, but ends up in 
Other Contacts 
b) if you modify a contact in Evolution, it gets moved to Google's Private 
folder, which prevents the contact from appearing in Gmail, Android Phones, 
iPads, Thunderbird or any other client/device using Google contacts

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/957695

Title:
  New or modified contacts sync incorrectly to Google My Contacts

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Evolution was not properly assigning groups to new or modified
  contacts.

  Specifically, new contacts would often land in Other Contacts
  instead of My Contacts when using the quick Add to Contacts... for
  email addresses.

  Additionally existing Google My Contacts that were modified in
  Evolution, would find themselves in the Google Personal group
  online, which is Google's privacy group meaning those contacts would
  no longer show up on other contact-synced devices like Android phones
  and tablets without explicit search for the contact on those devices.

  There is a patch upstream,

  https://bugzilla.gnome.org/show_bug.cgi?id=663324

  This problem existed with 11.10 and now current 12.04 Beta.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Sat Mar 17 00:56:27 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to precise on 2012-03-13 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/957695/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 957695] Re: New or modified contacts sync incorrectly to Google My Contacts

2012-03-30 Thread iMac
This patch resolves the Google contact issues with Evolution 3.2.3 in
12.04 Beta

** Patch added: Patch to correct Google contacts handling
   
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/957695/+attachment/2968204/+files/eds_google_fix.patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/957695

Title:
  New or modified contacts sync incorrectly to Google My Contacts

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Evolution was not properly assigning groups to new or modified
  contacts.

  Specifically, new contacts would often land in Other Contacts
  instead of My Contacts when using the quick Add to Contacts... for
  email addresses.

  Additionally existing Google My Contacts that were modified in
  Evolution, would find themselves in the Google Personal group
  online, which is Google's privacy group meaning those contacts would
  no longer show up on other contact-synced devices like Android phones
  and tablets without explicit search for the contact on those devices.

  There is a patch upstream,

  https://bugzilla.gnome.org/show_bug.cgi?id=663324

  This problem existed with 11.10 and now current 12.04 Beta.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Sat Mar 17 00:56:27 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to precise on 2012-03-13 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/957695/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 955707] Re: Unable to modify or update Google calendar events

2012-03-26 Thread iMac
Any reason this patch hasn't made its way into current 12.04 Beta? I
have been using it for quite some time and want to avoid setting
selections manually.

It is a simple, straightforward fix, for a 100% repeatable issue that
has been triaged and patched upstream.

Along with recently released https://bugs.launchpad.net/evolution-data-
server/+bug/847578, this makes Google calendar work again (been broken
since Natty).

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/955707

Title:
  Unable to modify or update Google calendar events

Status in Evolution Data Server:
  Fix Released
Status in “evolution-data-server” package in Ubuntu:
  Confirmed

Bug description:
  When attempting to save a modified event (update a meeting date and time to 
tomorrow), evolution returns:
  »Cannot modify calendar object: Unexpected HTTP status code 412 returned
  (Existing event has different ETag)«

  This also occurs when trying to update attendee status after receiving
  a confirmation by email.

  I am using current 3.2.3-0ubuntu4 on 12.04 Beta.

  The upstream patch is a workaround for a bug in libical48, which
  apparently has an escape character issue, as described upstream but
  patched in evolution to workaround.

  I tested the patch, re-attached here against current 3.2.3 sources,
  and it is simple and applies cleanly and resolves this problem
  completely.

  upstream: https://bugzilla.gnome.org/show_bug.cgi?id=669003

  Steps to Reproduce:
  1. Configure Online-Accounts OR add a Google Calendar manually
  2. Open Calendar, enter password
  3. Try to change or delete existing event
  4. Get error message: Cannot modify calendar object: Unexpected HTTP status
  code 412 returned (Existing event has different ETag)

  Actual results:
  Not able to manage already existing events.

  Expected results:
  Should be able to manage already existing events.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution-data-server 3.2.3-0ubuntu4
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Thu Mar 15 00:11:05 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution-data-server
  UpgradeStatus: Upgraded to precise on 2012-03-13 (1 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/955707/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 762187] Re: recurring 10 min invalid query dialog box from google contact sync

2012-03-23 Thread iMac
This is resolved for me in current 12.04 Beta  3.2.3ubuntu3 EDS

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/762187

Title:
  recurring 10 min invalid query dialog box from google contact sync

Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: evolution

  Address book:
  Name: first last
  checked:
   use in birthday  anniversaries calendar
   copy book content locally for offline operation
   autocomplete with this address book

  Server
   username - n...@gmail.com
use ssl checked
   refresh 100 minutes

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: evolution 2.32.2-0ubuntu7
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: fglrx
  Architecture: amd64
  Date: Fri Apr 15 16:56:58 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  ProcEnviron:
   SHELL=/bin/bash
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
  SourcePackage: evolution
  UpgradeStatus: Upgraded to natty on 2011-04-11 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/762187/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 957695] Re: New or modified contacts sync incorrectly to Google My Contacts

2012-03-23 Thread iMac
Upstream patch works to resolve this issue.   I have tested it against
12.04 3.2.3 sources and it seems to be working well.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/957695

Title:
  New or modified contacts sync incorrectly to Google My Contacts

Status in The Evolution Mail  Calendaring Tool:
  Confirmed
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Evolution was not properly assigning groups to new or modified
  contacts.

  Specifically, new contacts would often land in Other Contacts
  instead of My Contacts when using the quick Add to Contacts... for
  email addresses.

  Additionally existing Google My Contacts that were modified in
  Evolution, would find themselves in the Google Personal group
  online, which is Google's privacy group meaning those contacts would
  no longer show up on other contact-synced devices like Android phones
  and tablets without explicit search for the contact on those devices.

  There is a patch upstream,

  https://bugzilla.gnome.org/show_bug.cgi?id=663324

  This problem existed with 11.10 and now current 12.04 Beta.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Sat Mar 17 00:56:27 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to precise on 2012-03-13 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/957695/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 955673] Re: Ubuntu One Contact Address Book does not migrate correctly

2012-03-20 Thread iMac
Maybe dpkg suggested or recommends... there must be policy around this a
package maintainer can quote to help with the decision.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-couchdb in Ubuntu.
https://bugs.launchpad.net/bugs/955673

Title:
  Ubuntu One Contact Address Book does not migrate correctly

Status in “evolution-couchdb” package in Ubuntu:
  New

Bug description:
  Using Evolution on 12.04 B1 when migrating from 10.04 LTS system
  (existing /home folder from 10.04 used) results in CouchDB Ubuntu
  One Address Book not working on 12.04 system. Evolution version on
  10.04 is 2.28.3, 12.04 version is 3.2.3. All other Address Books seem
  to migrate ok.

  Error message is:
  -
  This address book cannot be opened.  This either means that an incorrect URI 
was entered, or the server is unreachable.

  Detailed error message: Invalid source
  -
  And you cannot delete this Address Book to remove the error whenever you 
access this book.

  I believe that the issue might be that CouchDB is no longer used in
  12.04, but it still gets migrated from the old 10.04 /home folder
  setup.

  Given that many 10.04 LTS users may well stay with Evolution in 12.04,
  this could be a significant issue for those of us who will do this.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Thu Mar 15 14:13:33 2012
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Beta amd64 (20120301)
  SourcePackage: evolution
  UpgradeStatus: Upgraded to precise on 2012-03-12 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-couchdb/+bug/955673/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 847578] Re: e-calendar-factory crashed with SIGSEGV while importing ics data

2012-03-20 Thread iMac
Upstream patch appears to resolve this issue, patch attached

** Patch added: Upstream fix for glib threading
   
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/847578/+attachment/2905029/+files/eds_glibfix.patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/847578

Title:
  e-calendar-factory crashed with SIGSEGV while importing ics data

Status in Evolution Data Server:
  Fix Released
Status in “evolution-data-server” package in Ubuntu:
  Triaged

Bug description:
  beowulf@seashell:~$ lsb_release -rs
  11.10
  beowulf@seashell:~$ apt-cache policy evolution-data-server
  evolution-data-server:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status
  beowulf@seashell:~$ apt-cache policy evolution
  evolution:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status

  
  I tried to import an ics file that came via mail from an ms-outlook office 
system. I opened the attached ics file manually and clicked through to import 
it into my google-calendar. Then it crashed.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Mon Sep 12 07:19:01 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64+mac (20110413)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1e7a6a86b0:movl   $0x,0x4(%rdi)
   PC (0x7f1e7a6a86b0) ok
   source $0x ok
   destination 0x4(%rdi) (0x0004) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
  Title: e-calendar-factory crashed with SIGSEGV
  UpgradeStatus: Upgraded to oneiric on 2011-09-11 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/847578/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 847578] Re: e-calendar-factory crashed with SIGSEGV while importing ics data

2012-03-19 Thread iMac
Upstream patches seem to be working well so far against Ubuntu sources.
Really excited about getting this one into 12.04.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/847578

Title:
  e-calendar-factory crashed with SIGSEGV while importing ics data

Status in Evolution Data Server:
  Fix Released
Status in “evolution-data-server” package in Ubuntu:
  Triaged

Bug description:
  beowulf@seashell:~$ lsb_release -rs
  11.10
  beowulf@seashell:~$ apt-cache policy evolution-data-server
  evolution-data-server:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status
  beowulf@seashell:~$ apt-cache policy evolution
  evolution:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status

  
  I tried to import an ics file that came via mail from an ms-outlook office 
system. I opened the attached ics file manually and clicked through to import 
it into my google-calendar. Then it crashed.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Mon Sep 12 07:19:01 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64+mac (20110413)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1e7a6a86b0:movl   $0x,0x4(%rdi)
   PC (0x7f1e7a6a86b0) ok
   source $0x ok
   destination 0x4(%rdi) (0x0004) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
  Title: e-calendar-factory crashed with SIGSEGV
  UpgradeStatus: Upgraded to oneiric on 2011-09-11 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/847578/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 847578] Re: e-calendar-factory crashed with SIGSEGV while importing ics data

2012-03-16 Thread iMac
It seems to have moved to fix-released for the package.. but the bug-
notifier did it.. I don't see any change to the package other then
upstream commits, which do resolved the issue (potentially).

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/847578

Title:
  e-calendar-factory crashed with SIGSEGV while importing ics data

Status in Evolution Data Server:
  Fix Released
Status in “evolution-data-server” package in Ubuntu:
  Triaged

Bug description:
  beowulf@seashell:~$ lsb_release -rs
  11.10
  beowulf@seashell:~$ apt-cache policy evolution-data-server
  evolution-data-server:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status
  beowulf@seashell:~$ apt-cache policy evolution
  evolution:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status

  
  I tried to import an ics file that came via mail from an ms-outlook office 
system. I opened the attached ics file manually and clicked through to import 
it into my google-calendar. Then it crashed.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Mon Sep 12 07:19:01 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64+mac (20110413)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1e7a6a86b0:movl   $0x,0x4(%rdi)
   PC (0x7f1e7a6a86b0) ok
   source $0x ok
   destination 0x4(%rdi) (0x0004) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
  Title: e-calendar-factory crashed with SIGSEGV
  UpgradeStatus: Upgraded to oneiric on 2011-09-11 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/847578/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 884933] Re: eds keeps prompting me for calendar passwords

2012-03-16 Thread iMac
Sounds like a duplicate of https://bugs.launchpad.net/ubuntu/+source
/evolution-data-server/+bug/854232.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/884933

Title:
  eds keeps prompting me for calendar passwords

Status in “evolution-data-server” package in Ubuntu:
  Confirmed

Bug description:
  EDS keeps popping up dialogs asking me for passwords for my Google
  calendars, even though I checked remember password, and the actual
  password appears to be filled in. I checked via wireshark and I'm not
  experiencing any authentication failures either, so there's absolutely
  no reason to keep asking me.  This is driving me crazy because the
  dialogs are popping up in clusters every few minutes, and there's
  nothing I can do to make them stop popping up.

  lsb_release -rd:
  Description:  Ubuntu 11.10
  Release:  11.10

  apt-cache policy evolution-data-server:
  evolution-data-server:
    Installed: 3.2.0-0ubuntu1
    Candidate: 3.2.0-0ubuntu1
    Version table:
   *** 3.2.0-0ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ oneiric/main i386 Packages
  100 /var/lib/dpkg/status

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/884933/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 955984] Re: e-calendar-factory crashed with SIGSEGV in icalvalue_get_recur()

2012-03-16 Thread iMac
could be related to the libical bug which is a regression on the
get+property, possible some escaped characters in the offset. If so
likely fixed when https://bugs.launchpad.net/ubuntu/+source/evolution-
data-server/+bug/955707 is addressed.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/955984

Title:
  e-calendar-factory crashed with SIGSEGV in icalvalue_get_recur()

Status in “evolution-data-server” package in Ubuntu:
  New

Bug description:
  I was using browser when dialog about internal error in Ubuntu popped
  up. I do have Google Calendar and another iCal calendar set up in
  evolution.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.04
  Package: evolution-data-server 3.2.3-0ubuntu4
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic i686
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: i386
  Date: Thu Mar 15 15:04:32 2012
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, user)
   LANG=fi_FI.UTF-8
  SegvAnalysis:
   Segfault happened at: 0xef8f05 icalvalue_get_recur+85: rep movsl 
%ds:(%esi),%es:(%edi)
   PC (0x00ef8f05) ok
   source %ds:(%esi) (0x007b) not located in a known VMA region (needed 
readable region)!
   destination %es:(%edi) (0xbff873cb) ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   icalvalue_get_recur () from /usr/lib/libical.so.0
   icalproperty_get_rrule () from /usr/lib/libical.so.0
   ?? () from /usr/lib/libical.so.0
   ?? () from /usr/lib/libical.so.0
   icaltimezone_get_utc_offset () from /usr/lib/libical.so.0
  Title: e-calendar-factory crashed with SIGSEGV in icalvalue_get_recur()
  UpgradeStatus: Upgraded to precise on 2012-03-14 (1 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/955984/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 957695] [NEW] New or modified contacts sync incorrectly to Google My Contacts

2012-03-16 Thread iMac
Public bug reported:

Evolution was not properly assigning groups to new or modified contacts.

Specifically, new contacts would often land in Other Contacts instead
of My Contacts when using the quick Add to Contacts... for email
addresses.

Additionally existing Google My Contacts that were modified in
Evolution, would find themselves in the Google Personal group online,
which is Google's privacy group meaning those contacts would no longer
show up on other contact-synced devices like Android phones and tablets
without explicit search for the contact on those devices.

There is a patch upstream,

https://bugzilla.gnome.org/show_bug.cgi?id=663324

This problem existed with 11.10 and now current 12.04 Beta.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: evolution 3.2.3-0ubuntu3
ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
Uname: Linux 3.2.0-18-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 1.94.1-0ubuntu2
Architecture: amd64
Date: Sat Mar 17 00:56:27 2012
ProcEnviron:
 TERM=xterm
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: evolution
UpgradeStatus: Upgraded to precise on 2012-03-13 (3 days ago)

** Affects: evolution
 Importance: Unknown
 Status: Unknown

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/957695

Title:
  New or modified contacts sync incorrectly to Google My Contacts

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Evolution was not properly assigning groups to new or modified
  contacts.

  Specifically, new contacts would often land in Other Contacts
  instead of My Contacts when using the quick Add to Contacts... for
  email addresses.

  Additionally existing Google My Contacts that were modified in
  Evolution, would find themselves in the Google Personal group
  online, which is Google's privacy group meaning those contacts would
  no longer show up on other contact-synced devices like Android phones
  and tablets without explicit search for the contact on those devices.

  There is a patch upstream,

  https://bugzilla.gnome.org/show_bug.cgi?id=663324

  This problem existed with 11.10 and now current 12.04 Beta.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Sat Mar 17 00:56:27 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to precise on 2012-03-13 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/957695/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 957695] Re: New or modified contacts sync incorrectly to Google My Contacts

2012-03-16 Thread iMac
** Bug watch added: GNOME Bug Tracker #663324
   https://bugzilla.gnome.org/show_bug.cgi?id=663324

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=663324
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/957695

Title:
  New or modified contacts sync incorrectly to Google My Contacts

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Evolution was not properly assigning groups to new or modified
  contacts.

  Specifically, new contacts would often land in Other Contacts
  instead of My Contacts when using the quick Add to Contacts... for
  email addresses.

  Additionally existing Google My Contacts that were modified in
  Evolution, would find themselves in the Google Personal group
  online, which is Google's privacy group meaning those contacts would
  no longer show up on other contact-synced devices like Android phones
  and tablets without explicit search for the contact on those devices.

  There is a patch upstream,

  https://bugzilla.gnome.org/show_bug.cgi?id=663324

  This problem existed with 11.10 and now current 12.04 Beta.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Sat Mar 17 00:56:27 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to precise on 2012-03-13 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/957695/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 955673] Re: Ubuntu One Contact Address Book does not migrate correctly

2012-03-14 Thread iMac
There is a couchdb package that is probably the right place for this; I
think I can change the tag

ii  evolution-couchdb 0.5.91-0ubuntu7   
 Evolution support for CouchDB databases
ii  evolution-couchdb-backend 0.5.91-0ubuntu7 

** Package changed: evolution (Ubuntu) = evolution-couchdb (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/955673

Title:
  Ubuntu One Contact Address Book does not migrate correctly

Status in “evolution-couchdb” package in Ubuntu:
  New

Bug description:
  Using Evolution on 12.04 B1 when migrating from 10.04 LTS system
  (existing /home folder from 10.04 used) results in CouchDB Ubuntu
  One Address Book not working on 12.04 system. Evolution version on
  10.04 is 2.28.3, 12.04 version is 3.2.3. All other Address Books seem
  to migrate ok.

  Error message is:
  -
  This address book cannot be opened.  This either means that an incorrect URI 
was entered, or the server is unreachable.

  Detailed error message: Invalid source
  -
  And you cannot delete this Address Book to remove the error whenever you 
access this book.

  I believe that the issue might be that CouchDB is no longer used in
  12.04, but it still gets migrated from the old 10.04 /home folder
  setup.

  Given that many 10.04 LTS users may well stay with Evolution in 12.04,
  this could be a significant issue for those of us who will do this.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Thu Mar 15 14:13:33 2012
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Beta amd64 (20120301)
  SourcePackage: evolution
  UpgradeStatus: Upgraded to precise on 2012-03-12 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-couchdb/+bug/955673/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 761037] Re: Evolution failed to properly migrate Local Contacts during 2.32 (Natty) Upgrade

2012-03-14 Thread iMac
Fixed in 12.04B, upstream as well.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/761037

Title:
  Evolution failed to properly migrate Local Contacts during 2.32
  (Natty) Upgrade

Status in The Evolution Mail  Calendaring Tool:
  Incomplete
Status in “evolution” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: evolution

  After upgrading to Natty following the Beta 1 release, my local
  contacts were not correctly migrated.

  After the upgrade I could not access two of my three addressbooks.
  The Personal addressbook was accessible, however my older Palm
  Contacts (legacy data)  and Autocompleted (used by the plugin) did
  not migrate.  They had entries in Evolution, but resulted in URI error
  below.

  This address book cannot be opened. This either means that an incorrect URI 
was entered, or the server is unreachable.
  Detailed error message: Invalid source

  Initially thought was related to bug 752468, but I know now is a
  result of this incorrect migration.  Looking at the URI/sources I had
  the following entries with the broken addressbooks/contact lists.

  imac@repo:~$ gconftool-2 --get /apps/evolution/addressbook/sources 
  [?xml version=1.0?
  group uid=1227068757.7280.2@repo name=Google base_uri=google:// 
readonly=no/
  ,?xml version=1.0?
  group uid=1227068757.7280.3@repo name=WebDAV base_uri=webdav:// 
readonly=no/
  ,?xml version=1.0?
  group uid=1227068758.7280.4@repo name=On This Computer base_uri=local: 
readonly=nosource uid=1247672993.1257...@n8-laptop.ianbmacdonald.com 
name=Autocompleted 
uri=file:///home/imac/.evolution/addressbook/local/1247672993.1257...@n8-laptop.ianbmacdonald.com
 
relative_uri=1247672993.1257...@n8-laptop.ianbmacdonald.compropertiesproperty
 name=use-in-contacts-calendar value=0//properties/sourcesource 
uid=1248182182.857...@n8-laptop.ianbmacdonald.com name=Personal 
relative_uri=systempropertiesproperty name=use-in-contacts-calendar 
value=0/property name=remember_password 
value=false//properties/sourcesource 
uid=1255615812.3005...@n8-laptop.ianbmacdonald.com name=Palm Contacts 
uri=file:///home/imac/.evolution/addressbook/local/1255615812.3005...@n8-laptop.ianbmacdonald.com
 
relative_uri=1255615812.3005...@n8-laptop.ianbmacdonald.compropertiesproperty
 name=use-in-contacts-calendar value=0/property name=pilot-sync 
value=true//properties/source/group
  ,?xml version=1.0?
  group uid=1227068758.7280.6@repo name=On LDAP Servers base_uri=ldap://; 
readonly=no/
  ,?xml version=1.0?
  group uid=1256843691.1052...@n8-laptop.ianbmacdonald.com name=CouchDB 
base_uri=couchdb:// readonly=nosource 
uid=1256843691.1052...@n8-laptop.ianbmacdonald.com name=Ubuntu One 
relative_uri=127.0.0.1propertiesproperty name=couchdb_instance 
value=user/property name=remember_password 
value=false//properties/source/group
  ]
   
  I know from reviewing this related bug comment that the above sources (uri=) 
were not correctly modified, except for the Personal where uri=system.

  https://bugzilla.gnome.org/show_bug.cgi?id=632962#c7

  based on this comment I executed a python script designed to fix this 
problem, found here:
  http://www.gentoo.org/proj/en/desktop/gnome/howtos/gnome-2.32-upgrade.xml 

  The fix-addressbook.py script worked after I changed the permissions
  for execution, and by modifying the first line to match the local
  python2.7 interpreter path.

  The same output now looks like below, and my contacts are totally
  accessible.

  imac@repo:~$ ./fix-addressbook.py 
  Removing deprecated attribute from source 2 [Autocompleted]
  Removing deprecated attribute from source 2 [Palm Contacts]
  imac@repo:~$ gconftool-2 --get /apps/evolution/addressbook/sources 
  [?xml version=1.0?
  group uid=1227068757.7280.2@repo name=Google base_uri=google:// 
readonly=no/
  ,?xml version=1.0?
  group uid=1227068757.7280.3@repo name=WebDAV base_uri=webdav:// 
readonly=no/
  ,?xml version=1.0?
  group base_uri=local: name=On This Computer readonly=no 
uid=1227068758.7280.4@reposource name=Autocompleted 
relative_uri=1247672993.1257...@n8-laptop.ianbmacdonald.com 
uid=1247672993.1257...@n8-laptop.ianbmacdonald.compropertiesproperty 
name=use-in-contacts-calendar value=0 //properties/sourcesource 
name=Personal relative_uri=system 
uid=1248182182.857...@n8-laptop.ianbmacdonald.compropertiesproperty 
name=use-in-contacts-calendar value=0 /property name=remember_password 
value=false //properties/sourcesource name=Palm Contacts 
relative_uri=1255615812.3005...@n8-laptop.ianbmacdonald.com 
uid=1255615812.3005...@n8-laptop.ianbmacdonald.compropertiesproperty 
name=use-in-contacts-calendar value=0 /property name=pilot-sync 
value=true //properties/source/group
  ,?xml version=1.0?
  group uid=1227068758.7280.6@repo name=On LDAP Servers base_uri=ldap://; 
readonly=no/
  ,?xml version=1.0?
  group uid=1256843691.1052...@n8

[Desktop-packages] [Bug 292714] Re: Wired Ethernet Gone After Suspend (Realtek 8168 on HP dv7)

2012-03-14 Thread iMac
There's another bug, I suspect is this one, but newer with upstream
links.

https://bugs.launchpad.net/linux/+bug/771857

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/292714

Title:
  Wired Ethernet Gone After Suspend (Realtek 8168 on HP dv7)

Status in “network-manager” package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: gnome-network-admin

  I am using a new HP dv7 laptop.  To isolate the problem, I have
  formatted the hard drive and performed a CLEAN installation.  Here is
  the version information:

  /etc/issue:
  Ubuntu 8.10 \n \l

  uname -a:
  Linux Ubu 2.6.27-7-generic #1 SMP Fri Oct 24 06:40:41 UTC 2008 x86_64 
GNU/Linux

  I perform only three actions on the clean system

  (1) Install all updates.  For today, this includes base-files,
  linux-*-2.6.27-7*, linux-libc-dev, procps.

  (2)  To get suspend working I need to make sure the keyboard/mouse
  fuctions.  I have needed this fix from 8.04 and it is still a problem
  in 8.10, but this easy work-around has worked fine for months: Add the
  file 25i8042 to /etc/pm/sleep.d/

  (3) Finally, my NIC comes up as a Realtek r8169, instead of r8168.
  This is another long-known about bug, so I follow the RealTek
  directions from their website and then blacklist the r8169.  Here are
  some output to show success:

  lsmod | grep r816
  =
  r8168  45968  0 

  dmesg | grep r816
  =
  [   15.366988] r8168 Gigabit Ethernet driver 8.009.00-NAPI loaded
  [   15.367025] r8168 :0a:00.0: PCI INT A - GSI 19 (level, low) - IRQ 19
  [   15.367051] r8168 :0a:00.0: setting latency timer to 64
  snip
  [   31.867892] r8168: eth0: link up

  At this stage everything is working on eth0.  Also, but I believe
  unrelated, I can connect to wlan0 without issue.

  Next, I go into suspend and come back.  eth0 is grayed out on the
  Network Manager drop-down and neither a modprobe -r r8168, modprobe
  r8168 nor a reboot will bring eth0 back to life.  Wireless, however is
  still okay.  Currently nothing is showing in ifconfig for eth0.

  I have spent hours and hours looking at other similar bugs with
  potential fixes, and nothing seems to help.  Hopefully, I've just
  missed something - but at this stage I am asking for some help to
  resolve.  If any other information is required, please let me know.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/292714/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 955707] [NEW] Unable to modify or update Google calendar events

2012-03-14 Thread iMac
Public bug reported:

When attempting to save a modified event (update a meeting date and time to 
tomorrow), evolution returns:
»Cannot modify calendar object: Unexpected HTTP status code 412 returned
(Existing event has different ETag)«

This also occurs when trying to update attendee status after receiving a
confirmation by email.

I am using current 3.2.3-0ubuntu4 on 12.04 Beta.

The upstream patch is a workaround for a bug in libical48, which
apparently has an escape character issue, as described upstream but
patched in evolution to workaround.

I tested the patch, re-attached here against current 3.2.3 sources, and
it is simple and applies cleanly and resolves this problem completely.

upstream: https://bugzilla.gnome.org/show_bug.cgi?id=669003

Steps to Reproduce:
1. Configure Online-Accounts OR add a Google Calendar manually
2. Open Calendar, enter password
3. Try to change or delete existing event
4. Get error message: Cannot modify calendar object: Unexpected HTTP status
code 412 returned (Existing event has different ETag)

Actual results:
Not able to manage already existing events.

Expected results:
Should be able to manage already existing events.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: evolution-data-server 3.2.3-0ubuntu4
ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
Uname: Linux 3.2.0-18-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 1.94.1-0ubuntu2
Architecture: amd64
Date: Thu Mar 15 00:11:05 2012
ProcEnviron:
 TERM=xterm
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: evolution-data-server
UpgradeStatus: Upgraded to precise on 2012-03-13 (1 days ago)

** Affects: evolution-data-server
 Importance: Unknown
 Status: Unknown

** Affects: evolution-data-server (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/955707

Title:
  Unable to modify or update Google calendar events

Status in Evolution Data Server:
  Unknown
Status in “evolution-data-server” package in Ubuntu:
  New

Bug description:
  When attempting to save a modified event (update a meeting date and time to 
tomorrow), evolution returns:
  »Cannot modify calendar object: Unexpected HTTP status code 412 returned
  (Existing event has different ETag)«

  This also occurs when trying to update attendee status after receiving
  a confirmation by email.

  I am using current 3.2.3-0ubuntu4 on 12.04 Beta.

  The upstream patch is a workaround for a bug in libical48, which
  apparently has an escape character issue, as described upstream but
  patched in evolution to workaround.

  I tested the patch, re-attached here against current 3.2.3 sources,
  and it is simple and applies cleanly and resolves this problem
  completely.

  upstream: https://bugzilla.gnome.org/show_bug.cgi?id=669003

  Steps to Reproduce:
  1. Configure Online-Accounts OR add a Google Calendar manually
  2. Open Calendar, enter password
  3. Try to change or delete existing event
  4. Get error message: Cannot modify calendar object: Unexpected HTTP status
  code 412 returned (Existing event has different ETag)

  Actual results:
  Not able to manage already existing events.

  Expected results:
  Should be able to manage already existing events.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution-data-server 3.2.3-0ubuntu4
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Thu Mar 15 00:11:05 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution-data-server
  UpgradeStatus: Upgraded to precise on 2012-03-13 (1 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/955707/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 955707] Re: Unable to modify or update Google calendar events

2012-03-14 Thread iMac
** Patch added: Patch for eds event modification issue
   
https://bugs.launchpad.net/bugs/955707/+attachment/2873548/+files/eds_412fix.patch

** Bug watch added: GNOME Bug Tracker #669003
   https://bugzilla.gnome.org/show_bug.cgi?id=669003

** Also affects: evolution-data-server via
   https://bugzilla.gnome.org/show_bug.cgi?id=669003
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/955707

Title:
  Unable to modify or update Google calendar events

Status in Evolution Data Server:
  Unknown
Status in “evolution-data-server” package in Ubuntu:
  New

Bug description:
  When attempting to save a modified event (update a meeting date and time to 
tomorrow), evolution returns:
  »Cannot modify calendar object: Unexpected HTTP status code 412 returned
  (Existing event has different ETag)«

  This also occurs when trying to update attendee status after receiving
  a confirmation by email.

  I am using current 3.2.3-0ubuntu4 on 12.04 Beta.

  The upstream patch is a workaround for a bug in libical48, which
  apparently has an escape character issue, as described upstream but
  patched in evolution to workaround.

  I tested the patch, re-attached here against current 3.2.3 sources,
  and it is simple and applies cleanly and resolves this problem
  completely.

  upstream: https://bugzilla.gnome.org/show_bug.cgi?id=669003

  Steps to Reproduce:
  1. Configure Online-Accounts OR add a Google Calendar manually
  2. Open Calendar, enter password
  3. Try to change or delete existing event
  4. Get error message: Cannot modify calendar object: Unexpected HTTP status
  code 412 returned (Existing event has different ETag)

  Actual results:
  Not able to manage already existing events.

  Expected results:
  Should be able to manage already existing events.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evolution-data-server 3.2.3-0ubuntu4
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Thu Mar 15 00:11:05 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution-data-server
  UpgradeStatus: Upgraded to precise on 2012-03-13 (1 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/955707/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 847578] Re: e-calendar-factory crashed with SIGSEGV while importing ics data

2012-03-07 Thread iMac
This one is still happening in 12.04B1;  Basically rendering the
calendar unusable.   It is fixed upstream, re-comment #9

Is there a plan to merge 3.3 or will this release also suffer from the
broken calendar integration that 11.10 had?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/847578

Title:
  e-calendar-factory crashed with SIGSEGV while importing ics data

Status in Evolution Data Server:
  Confirmed
Status in “evolution-data-server” package in Ubuntu:
  Triaged

Bug description:
  beowulf@seashell:~$ lsb_release -rs
  11.10
  beowulf@seashell:~$ apt-cache policy evolution-data-server
  evolution-data-server:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status
  beowulf@seashell:~$ apt-cache policy evolution
  evolution:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status

  
  I tried to import an ics file that came via mail from an ms-outlook office 
system. I opened the attached ics file manually and clicked through to import 
it into my google-calendar. Then it crashed.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Mon Sep 12 07:19:01 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64+mac (20110413)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1e7a6a86b0:movl   $0x,0x4(%rdi)
   PC (0x7f1e7a6a86b0) ok
   source $0x ok
   destination 0x4(%rdi) (0x0004) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
  Title: e-calendar-factory crashed with SIGSEGV
  UpgradeStatus: Upgraded to oneiric on 2011-09-11 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/847578/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 946002] Re: gnome-session: Fatal IO error 11 when playing videos

2012-03-04 Thread iMac
looks like it might be a duplicate of
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/937347

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-session in Ubuntu.
https://bugs.launchpad.net/bugs/946002

Title:
  gnome-session: Fatal IO error 11 when playing videos

Status in “gnome-session” package in Ubuntu:
  New

Bug description:
  When playing or attempting to play a video file on 12.04 up to date
  with updates the screen goes black and logs you out. I'm assuming this
  is either a session crash or a forced logout.

  Apps tested: VLC, Totem
  File types: AVI, MKV, 3GP, MP4, FLV

  Checking syslog I'm finding this:
  gnome-session[3113]: Gdk-WARNING: gnome-session: Fatal IO error 11 (Resource 
temporarily unavailable) on X server :0.#012

  Replication:
  Navigate to a video file via nautilus or lenses
  Click/Double click on the file accordingly
  The default app or app selected will start
  As soon as video file kicks in to play screen goes blank
  You are presented with the login screen

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: gnome-session 3.2.1-0ubuntu5
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  Uname: Linux 3.2.0-17-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.94-0ubuntu1
  Architecture: amd64
  Date: Sat Mar  3 19:58:42 2012
  PackageArchitecture: all
  SourcePackage: gnome-session
  UpgradeStatus: Upgraded to precise on 2012-03-02 (1 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/946002/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 881586] Re: evolution crashed with SIGSEGV in e_week_view_reshape_event_span()

2012-01-18 Thread iMac
** Bug watch added: GNOME Bug Tracker #662788
   https://bugzilla.gnome.org/show_bug.cgi?id=662788

** Changed in: evolution
   Importance: Critical = Unknown

** Changed in: evolution
   Status: Invalid = Unknown

** Changed in: evolution
 Remote watch: GNOME Bug Tracker #662703 = GNOME Bug Tracker #662788

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/881586

Title:
  evolution crashed with SIGSEGV in e_week_view_reshape_event_span()

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  Triaged

Bug description:
  using Evolution calendar in week view, and clicked on the arrow to
  show last week

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.2.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-13.21-generic 3.0.6
  Uname: Linux 3.0.0-13-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu4
  Architecture: amd64
  CrashCounter: 1
  Date: Tue Oct 25 14:14:50 2011
  ExecutablePath: /usr/bin/evolution
  ProcCmdline: evolution
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.utf8
   LANGUAGE=en
  SegvAnalysis:
   Segfault happened at: 0x7fc1867e57c7 e_week_view_reshape_event_span+2375:  
mov0x18(%rdx),%rdi
   PC (0x7fc1867e57c7) ok
   source 0x18(%rdx) (0x6f6c206f73207379) not located in a known VMA region 
(needed readable region)!
   destination %rdi ok
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: evolution
  StacktraceTop:
   e_week_view_reshape_event_span (span_num=optimized out, event_num=21, 
week_view=0x7fc19a8f6470) at e-week-view.c:3190
   e_week_view_reshape_event_span (week_view=0x7fc19a8f6470, event_num=21, 
span_num=optimized out) at e-week-view.c:3062
   e_week_view_reshape_events (week_view=optimized out) at e-week-view.c:2881
   e_week_view_check_layout (week_view=0x7fc19a8f6470) at e-week-view.c:2824
   e_week_view_layout_timeout_cb (data=optimized out) at e-week-view.c:4714
  Title: evolution crashed with SIGSEGV in e_week_view_reshape_event_span()
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (46 days ago)
  UserGroups: adm admin cdrom dialout dip disk floppy fuse kvm libvirtd lpadmin 
netdev plugdev pulse pulse-access sambashare vboxusers vde2-net video

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/881586/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 831842] Re: evolution crashed with signal 5 in e_load_ui_builder_definition()

2011-12-14 Thread iMac
@Mathieu - The command line output is show in this Sept. comment in the
upstream bug.  https://bugzilla.gnome.org/show_bug.cgi?id=659890#c4

Hoping somebody like yourself that knows the build / linking system in
more detail can figure this out based on the upstream information.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/831842

Title:
  evolution crashed with signal 5 in e_load_ui_builder_definition()

Status in The Evolution Mail  Calendaring Tool:
  New
Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  DId the same as here Bug #831308 ,but this time system generated
  automatic report

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.5-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-9.12-generic 3.0.3
  Uname: Linux 3.0.0-9-generic i686
  Architecture: i386
  CrashCounter: 1
  Date: Tue Aug 23 10:53:45 2011
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Alpha i386 (20110814)
  ProcCmdline: evolution
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   LANGUAGE=en_US:en
  Signal: 5
  SourcePackage: evolution
  StacktraceTop:
   e_load_ui_builder_definition () from /usr/lib/evolution/3.2/libeutil.so.0
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   g_simple_async_result_complete () from 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/libedataserver-1.2.so.15
  Title: evolution crashed with signal 5 in e_load_ui_builder_definition()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/831842/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 847578] Re: e-calendar-factory crashed with SIGSEGV while importing ics data

2011-12-14 Thread iMac
This one looks to possibly be fixed in 3.3.3+
https://bugzilla.gnome.org/show_bug.cgi?id=659491

Maybe a package maintainer can look to see if the patch can be applied,
noting it adds some new strings in its current form.

** Bug watch added: GNOME Bug Tracker #659491
   https://bugzilla.gnome.org/show_bug.cgi?id=659491

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/847578

Title:
  e-calendar-factory crashed with SIGSEGV while importing ics data

Status in Evolution Data Server:
  Confirmed
Status in “evolution-data-server” package in Ubuntu:
  Triaged

Bug description:
  beowulf@seashell:~$ lsb_release -rs
  11.10
  beowulf@seashell:~$ apt-cache policy evolution-data-server
  evolution-data-server:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status
  beowulf@seashell:~$ apt-cache policy evolution
  evolution:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status

  
  I tried to import an ics file that came via mail from an ms-outlook office 
system. I opened the attached ics file manually and clicked through to import 
it into my google-calendar. Then it crashed.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Mon Sep 12 07:19:01 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64+mac (20110413)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1e7a6a86b0:movl   $0x,0x4(%rdi)
   PC (0x7f1e7a6a86b0) ok
   source $0x ok
   destination 0x4(%rdi) (0x0004) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
  Title: e-calendar-factory crashed with SIGSEGV
  UpgradeStatus: Upgraded to oneiric on 2011-09-11 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/847578/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 850090] Re: evolution crashed with SIGABRT in g_assertion_message()

2011-12-12 Thread iMac
Happened at initial load for me with current evo 3.2.1-0ubuntu1 and eds
3.2.2-0ubuntu1~oneiric

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/850090

Title:
  evolution crashed with SIGABRT in g_assertion_message()

Status in “evolution” package in Ubuntu:
  Confirmed

Bug description:
  evolution crashed a little while after I started it up while it was
  getting and filtering new mail.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic-pae 3.0.4
  Uname: Linux 3.0.0-11-generic-pae i686
  ApportVersion: 1.23-0ubuntu1
  Architecture: i386
  Date: Wed Sep 14 17:16:46 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/bin/evolution
  ProcCmdline: evolution
  Signal: 6
  SourcePackage: evolution
  StacktraceTop:
   g_assertion_message (domain=0xb71b23a1 GLib-GIO, file=0xb71d1e54 
/build/buildd/glib2.0-2.29.90/./gio/gdbusmessage.c, line=1986, 
func=0xb71d2e57 append_value_to_blob, message=optimized out) at 
/build/buildd/glib2.0-2.29.90/./glib/gtestutils.c:1425
   g_assertion_message_expr (domain=0xb71b23a1 GLib-GIO, file=0xb71d1e54 
/build/buildd/glib2.0-2.29.90/./gio/gdbusmessage.c, line=1986, 
func=0xb71d2e57 append_value_to_blob, expr=0xb71d1e20 g_utf8_validate (v, 
-1, end)  (end == v + len)) at 
/build/buildd/glib2.0-2.29.90/./glib/gtestutils.c:1436
   append_value_to_blob (value=optimized out, type=0xb70499c2, 
mos=0xb97bce38, dos=0xb91f2000, out_padding_added=0x0, error=0x0) at 
/build/buildd/glib2.0-2.29.90/./gio/gdbusmessage.c:1999
   append_body_to_blob (error=0xb95fd9d8, dos=0xb91f2000, mos=0xb97bce38, 
value=optimized out) at 
/build/buildd/glib2.0-2.29.90/./gio/gdbusmessage.c:2200
   g_dbus_message_to_blob (message=0xb93a60f0, out_size=0xbff6e50c, 
capabilities=G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING, error=0x0) at 
/build/buildd/glib2.0-2.29.90/./gio/gdbusmessage.c:2371
  Title: evolution crashed with SIGABRT in g_assertion_message()
  UpgradeStatus: Upgraded to oneiric on 2011-09-06 (8 days ago)
  UserGroups: adm admin audio cdrom dialout dip floppy fuse kvm lpadmin plugdev 
pulse pulse-access scanner staff video

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/850090/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 847578] Re: e-calendar-factory crashed with SIGSEGV while importing ics data

2011-12-07 Thread iMac
Back to almost 100% reoccurrance on EDS 3.2.2 in proposed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/847578

Title:
  e-calendar-factory crashed with SIGSEGV while importing ics data

Status in Evolution Data Server:
  Confirmed
Status in “evolution-data-server” package in Ubuntu:
  Triaged

Bug description:
  beowulf@seashell:~$ lsb_release -rs
  11.10
  beowulf@seashell:~$ apt-cache policy evolution-data-server
  evolution-data-server:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status
  beowulf@seashell:~$ apt-cache policy evolution
  evolution:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status

  
  I tried to import an ics file that came via mail from an ms-outlook office 
system. I opened the attached ics file manually and clicked through to import 
it into my google-calendar. Then it crashed.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Mon Sep 12 07:19:01 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64+mac (20110413)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1e7a6a86b0:movl   $0x,0x4(%rdi)
   PC (0x7f1e7a6a86b0) ok
   source $0x ok
   destination 0x4(%rdi) (0x0004) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
  Title: e-calendar-factory crashed with SIGSEGV
  UpgradeStatus: Upgraded to oneiric on 2011-09-11 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/847578/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 860806] Re: Address cards render extra phone number

2011-11-03 Thread iMac
I have not seen this issue since upgrading to 3.2.1-0ubuntu1;
confirmed.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/860806

Title:
  Address cards render extra phone number

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  Fix Released
Status in “evolution” source package in Oneiric:
  Fix Committed

Bug description:
  Address cards render extra phone number.   Patch from upstream
  attached

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.92-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Tue Sep 27 14:47:21 2011
  ProcEnviron:
   LANGUAGE=en
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (18 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/860806/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 831842] Re: evolution crashed with signal 5 in e_load_ui_builder_definition()

2011-11-02 Thread iMac
After messing around with the Makefiles this problem can be resolved to
the point where upstream believe it looks like the Ubuntu build process
introduces an issue, or rouses this issue.  Maybe someone familiar with
the unique packaging and dpkg-buildpackage process can peek upstream and
isolate the issue further.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/831842

Title:
  evolution crashed with signal 5 in e_load_ui_builder_definition()

Status in The Evolution Mail  Calendaring Tool:
  New
Status in “evolution” package in Ubuntu:
  Triaged

Bug description:
  DId the same as here Bug #831308 ,but this time system generated
  automatic report

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.5-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-9.12-generic 3.0.3
  Uname: Linux 3.0.0-9-generic i686
  Architecture: i386
  CrashCounter: 1
  Date: Tue Aug 23 10:53:45 2011
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Alpha i386 (20110814)
  ProcCmdline: evolution
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   LANGUAGE=en_US:en
  Signal: 5
  SourcePackage: evolution
  StacktraceTop:
   e_load_ui_builder_definition () from /usr/lib/evolution/3.2/libeutil.so.0
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   g_simple_async_result_complete () from 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/libedataserver-1.2.so.15
  Title: evolution crashed with signal 5 in e_load_ui_builder_definition()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/831842/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 877534] Re: Evolution problems after upgrade to ubuntu 11.10

2011-10-25 Thread iMac
Fixed upstream in 3.2.2.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/877534

Title:
  Evolution problems after upgrade to ubuntu 11.10

Status in The Evolution Mail  Calendaring Tool:
  New
Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  I upgraded to Ubuntu 11.10.

  Evolution decided to change my personal options. The option under
  receiving options - message storage was changed to: delete after 7
  days. I LOST thousands of email. I can not access any of my email
  anymore from remote location via the web interface. This really sucks.
  This is very very very bad written code. It caused me a lot of
  problems.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.2.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 3.0.0-12-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Tue Oct 18 11:39:17 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-10-14 (3 days ago)
  XsessionErrors:
   (nautilus:2615): Gtk-CRITICAL **: gtk_action_set_visible: assertion 
`GTK_IS_ACTION (action)' failed
   (nautilus:2615): Gtk-CRITICAL **: gtk_action_set_visible: assertion 
`GTK_IS_ACTION (action)' failed
   (gwibber-service:2789): libindicate-WARNING **: Menu being changed when the 
indicator is visible.  Listeners will NOT be notified of this change.
   (gedit:3148): Gtk-WARNING **: Unable to retrieve the file info for 
`file:///home/henry/Documents/Work/BSC/evdo_Neighbors_20111018.txt': Error 
stating file '/home/henry/Documents/Work/BSC/evdo_Neighbors_20111018.txt': No 
such file or directory
   (eog:4793): EOG-WARNING **: Couldn't load icon: Icon 'image-loading' not 
present in theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/877534/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 849581] Re: [regression] no option to send reply for accepted calendar invites

2011-10-24 Thread iMac
Issue is resolved with current 3.2.1-0ubuntu1, or at least so far as my
experience has been since released.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/849581

Title:
  [regression] no option to send reply for accepted calendar invites

Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  Email calendar invites do not present an option to reply to the sender
  upon acceptance (or other selection) and evolution sends nothing back
  to the sender.

  In Natty (2.32) and earlier the email responses with subject
  Accepted: xxx could be seen in the sent box.   Perhaps the
  correlation between the outbound email account (imapx) and the inbound
  google calendar account is not being made?  In this case the email is
  not gmail (Verio qmail IMAP+) and a matching Google Calendar account
  (username matching email).


  Senders are unaware of acceptance as a result, defeating the purpose
  of the calendar invite.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.17-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  Date: Tue Sep 13 20:18:29 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/849581/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 849581] Re: [regression] no option to send reply for accepted calendar invites

2011-10-24 Thread iMac
Actually.. I mispoke..thought this was a related bug. The option to send
a reply is missing when the appointment does not already appear in the
calendar.   I am going to open this upstream as now that I can accept
invites (the bug that is resolved) I can actually test and see if
replies are being sent.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/849581

Title:
  [regression] no option to send reply for accepted calendar invites

Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  Email calendar invites do not present an option to reply to the sender
  upon acceptance (or other selection) and evolution sends nothing back
  to the sender.

  In Natty (2.32) and earlier the email responses with subject
  Accepted: xxx could be seen in the sent box.   Perhaps the
  correlation between the outbound email account (imapx) and the inbound
  google calendar account is not being made?  In this case the email is
  not gmail (Verio qmail IMAP+) and a matching Google Calendar account
  (username matching email).


  Senders are unaware of acceptance as a result, defeating the purpose
  of the calendar invite.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.17-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  Date: Tue Sep 13 20:18:29 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/849581/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 877534] Re: Evolution problems after upgrade to ubuntu 11.10

2011-10-24 Thread iMac
The issue regarding loosing data on a change in history retention seems
pretty bad.. I opened a bug upstream.  Anyone who has this issue should
provide more details upstream.

** Bug watch added: GNOME Bug Tracker #662524
   https://bugzilla.gnome.org/show_bug.cgi?id=662524

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=662524
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/877534

Title:
  Evolution problems after upgrade to ubuntu 11.10

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  I upgraded to Ubuntu 11.10.

  Evolution decided to change my personal options. The option under
  receiving options - message storage was changed to: delete after 7
  days. I LOST thousands of email. I can not access any of my email
  anymore from remote location via the web interface. This really sucks.
  This is very very very bad written code. It caused me a lot of
  problems.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.2.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 3.0.0-12-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Tue Oct 18 11:39:17 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-10-14 (3 days ago)
  XsessionErrors:
   (nautilus:2615): Gtk-CRITICAL **: gtk_action_set_visible: assertion 
`GTK_IS_ACTION (action)' failed
   (nautilus:2615): Gtk-CRITICAL **: gtk_action_set_visible: assertion 
`GTK_IS_ACTION (action)' failed
   (gwibber-service:2789): libindicate-WARNING **: Menu being changed when the 
indicator is visible.  Listeners will NOT be notified of this change.
   (gedit:3148): Gtk-WARNING **: Unable to retrieve the file info for 
`file:///home/henry/Documents/Work/BSC/evdo_Neighbors_20111018.txt': Error 
stating file '/home/henry/Documents/Work/BSC/evdo_Neighbors_20111018.txt': No 
such file or directory
   (eog:4793): EOG-WARNING **: Couldn't load icon: Icon 'image-loading' not 
present in theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/877534/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 847578] Re: e-calendar-factory crashed with SIGSEGV while importing ics data

2011-10-24 Thread iMac
i have not seen this issue since upgrading to 3.2.1-0ubuntu1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/847578

Title:
  e-calendar-factory crashed with SIGSEGV while importing ics data

Status in Evolution Data Server:
  Confirmed
Status in “evolution-data-server” package in Ubuntu:
  Triaged

Bug description:
  beowulf@seashell:~$ lsb_release -rs
  11.10
  beowulf@seashell:~$ apt-cache policy evolution-data-server
  evolution-data-server:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status
  beowulf@seashell:~$ apt-cache policy evolution
  evolution:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status

  
  I tried to import an ics file that came via mail from an ms-outlook office 
system. I opened the attached ics file manually and clicked through to import 
it into my google-calendar. Then it crashed.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Mon Sep 12 07:19:01 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64+mac (20110413)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1e7a6a86b0:movl   $0x,0x4(%rdi)
   PC (0x7f1e7a6a86b0) ok
   source $0x ok
   destination 0x4(%rdi) (0x0004) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
  Title: e-calendar-factory crashed with SIGSEGV
  UpgradeStatus: Upgraded to oneiric on 2011-09-11 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/847578/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 879073] Re: Not all emails are shown

2011-10-23 Thread iMac
Konrad, you should perhaps consider a Ubuntu upgrade as this issue is
resolved in newer versions of Evolution.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/879073

Title:
  Not all emails are shown

Status in “evolution” package in Ubuntu:
  New

Bug description:
  I set up a IMAP gmail account without problems. Generally evolution
  works fine and I am really pleased with it (it is so much better than
  Thunderbird which I used before). However, sometimes some of the
  newest email are not shown and unread counter is negative (-3 unread,
  for example). After sending new email to myself I am able to see it
  but still those missing emails does not show up. Other email clients
  connecting to this account (for example cell phone client) show them
  without problems.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: evolution 2.30.3-1ubuntu7.3
  ProcVersionSignature: Ubuntu 2.6.35-30.61-generic-pae 2.6.35.13
  Uname: Linux 2.6.35-30-generic-pae i686
  Architecture: i386
  Date: Thu Oct 20 22:10:46 2011
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: evolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/879073/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 848198] Re: Sporadic gconf error messages

2011-10-23 Thread iMac
Upstream patches fixed this for me too.. happened every time evolution
or gconf related package updates occurred.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gconf in Ubuntu.
https://bugs.launchpad.net/bugs/848198

Title:
  Sporadic gconf error messages

Status in The GConf Registry System:
  New
Status in “gconf” package in Ubuntu:
  Triaged
Status in “gconf” source package in Oneiric:
  Triaged

Bug description:
  Since updating to Oneiric, evolution gives a gconf error message about
  once or twice a day. See the attached screenshot.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  Date: Mon Sep 12 15:26:22 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha amd64 (20110302)
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-08-16 (27 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gconf/+bug/848198/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 850218] Re: Google Calendar in Evolution fails to process invite Accept

2011-10-19 Thread iMac
*** This bug is a duplicate of bug 847578 ***
https://bugs.launchpad.net/bugs/847578

This one is a dupe of 847578 IMHO

** This bug has been marked a duplicate of bug 847578
   e-calendar-factory crashed with SIGSEGV while importing ics data

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/850218

Title:
  Google Calendar in Evolution fails to process invite Accept

Status in “evolution” package in Ubuntu:
  Confirmed

Bug description:
  Click on Accept with the send reply option.Evolution hangs (fades
  in / out of grey).   Attached is gdb backtrace output.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Wed Sep 14 13:56:37 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (5 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/850218/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 847578] Re: e-calendar-factory crashed with SIGSEGV while importing ics data

2011-10-19 Thread iMac
It sure is working better in 3.2.1 .. I have an active session right now
with it working great.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/847578

Title:
  e-calendar-factory crashed with SIGSEGV while importing ics data

Status in Evolution Data Server:
  Confirmed
Status in “evolution-data-server” package in Ubuntu:
  Triaged

Bug description:
  beowulf@seashell:~$ lsb_release -rs
  11.10
  beowulf@seashell:~$ apt-cache policy evolution-data-server
  evolution-data-server:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status
  beowulf@seashell:~$ apt-cache policy evolution
  evolution:
Installiert: 3.1.91-0ubuntu1
Kandidat:3.1.91-0ubuntu1
Versionstabelle:
   *** 3.1.91-0ubuntu1 0
  500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
  100 /var/lib/dpkg/status

  
  I tried to import an ics file that came via mail from an ms-outlook office 
system. I opened the attached ics file manually and clicked through to import 
it into my google-calendar. Then it crashed.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Mon Sep 12 07:19:01 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/evolution/e-calendar-factory
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64+mac (20110413)
  ProcCmdline: /usr/lib/evolution/e-calendar-factory
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1e7a6a86b0:movl   $0x,0x4(%rdi)
   PC (0x7f1e7a6a86b0) ok
   source $0x ok
   destination 0x4(%rdi) (0x0004) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
   ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
  Title: e-calendar-factory crashed with SIGSEGV
  UpgradeStatus: Upgraded to oneiric on 2011-09-11 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/847578/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 877751] Re: Clicking the Forward Button on an Evolution Email results in no response from the application

2011-10-19 Thread iMac
I just tested this, and it appears fixed in the current 3.2.1-0ubuntu1
proposed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/877751

Title:
  Clicking the Forward Button on an Evolution Email results in no
  response from the application

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  Fix Committed
Status in “evolution” package in Fedora:
  Unknown

Bug description:
  Version Information:
  Evolution 3.2.0
  Ubuntu 11.10 64bit

  expected:
  When clicking the forward button the email message should close and a new 
message (with the original forwarded) should appear.

  actual:
  When trying to forward an email the forward button results in the message 
being closed, but no forward message being created.

  Error when evolution is run from CL:

  (evolution:2231): evolution-shell-CRITICAL **:
  e_shell_backend_get_shell: assertion `E_IS_SHELL_BACKEND
  (shell_backend)' failed

  (evolution:2231): evolution-mail-CRITICAL **:
  em_utils_forward_message: assertion `E_IS_SHELL (shell)' failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/877751/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 851153] Re: IMAP account (Courier) no longer working after upgrade

2011-10-18 Thread iMac
One workaround is to re-create.  If this happened on 3.2 you should open
an upstream bug.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/851153

Title:
  IMAP account (Courier) no longer working after upgrade

Status in “evolution” package in Ubuntu:
  Confirmed

Bug description:
  After upgrading to Oneiric one of my IMAP accounts is not working.

  I have attached two gdb outputs, one configured as IMAP, the other as
  IMAP+ as noted by the filename.  In Natty/2.32 this account works fine
  with either IMAP or IMAP+.

  The failing account is connecting to a Courier-IMAP server running on
  Debian Squeeze.  The account continues to work fine on Natty/2.32 with
  the un-upgraded configuration.

  For the gdb output attached, I have disabled/unchecked all other
  email/online accounts .  In both cases I waited for an error message
  and then killed the session from gdb.

  When set to IMAP (gdb_evolution_110915_imap.txt) the error message on screen 
stated:
  Error while performing operation. You must be working online to complete this 
operation

  When set to IMAP+ (gdb_evolution_110915_imapplus.txt) the error message 
stated:
  Failed to open folder. The reported error was Could not connect to 
mail2.ianbmacdonald.com: Input/output error

  Creating a completely new account seems to work fine. So I'll just
  purge the old one and migrate filters, etc.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Thu Sep 15 13:54:10 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (6 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/851153/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 851153] Re: IMAP account (Courier) no longer working after upgrade

2011-10-18 Thread iMac
Sorry..now I remember ..I think this is fixed due to  an upstream
patch...

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/851153

Title:
  IMAP account (Courier) no longer working after upgrade

Status in “evolution” package in Ubuntu:
  Confirmed

Bug description:
  After upgrading to Oneiric one of my IMAP accounts is not working.

  I have attached two gdb outputs, one configured as IMAP, the other as
  IMAP+ as noted by the filename.  In Natty/2.32 this account works fine
  with either IMAP or IMAP+.

  The failing account is connecting to a Courier-IMAP server running on
  Debian Squeeze.  The account continues to work fine on Natty/2.32 with
  the un-upgraded configuration.

  For the gdb output attached, I have disabled/unchecked all other
  email/online accounts .  In both cases I waited for an error message
  and then killed the session from gdb.

  When set to IMAP (gdb_evolution_110915_imap.txt) the error message on screen 
stated:
  Error while performing operation. You must be working online to complete this 
operation

  When set to IMAP+ (gdb_evolution_110915_imapplus.txt) the error message 
stated:
  Failed to open folder. The reported error was Could not connect to 
mail2.ianbmacdonald.com: Input/output error

  Creating a completely new account seems to work fine. So I'll just
  purge the old one and migrate filters, etc.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Thu Sep 15 13:54:10 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (6 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/851153/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 862882] Re: lightdm segfault error 4 in libglib-2.0.so.0.3000.0

2011-10-18 Thread iMac
I'll try..I've only ever noticed accidentally browsing dmesg. Is there
any way to make rapport catch this? I'll throw a console widget up and
keep my eyes peeled

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/862882

Title:
  lightdm segfault error 4 in libglib-2.0.so.0.3000.0

Status in “lightdm” package in Ubuntu:
  Incomplete

Bug description:
  Noticed I have the following in dmesg

  [   58.336910] lightdm[1344]: segfault at 007b4800 ip
  7f88d4c5e2de sp 7fff274a65f0 error 4 in
  libglib-2.0.so.0.3000.0[7f88d4bd9000+f4000]

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: lightdm 1.0.0-0ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.19-generic 3.0.4
  Uname: Linux 3.0.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu2
  Architecture: amd64
  Date: Thu Sep 29 19:45:59 2011
  ProcEnviron:
   LANGUAGE=en
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (20 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/862882/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 851153] Re: IMAP account (Courier) no longer working after upgrade

2011-10-18 Thread iMac
3.2.1-0ubuntu1 released a few hours ago has the patch I'm talking about.
If that doesn't fix it then post upstream.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/851153

Title:
  IMAP account (Courier) no longer working after upgrade

Status in “evolution” package in Ubuntu:
  Confirmed

Bug description:
  After upgrading to Oneiric one of my IMAP accounts is not working.

  I have attached two gdb outputs, one configured as IMAP, the other as
  IMAP+ as noted by the filename.  In Natty/2.32 this account works fine
  with either IMAP or IMAP+.

  The failing account is connecting to a Courier-IMAP server running on
  Debian Squeeze.  The account continues to work fine on Natty/2.32 with
  the un-upgraded configuration.

  For the gdb output attached, I have disabled/unchecked all other
  email/online accounts .  In both cases I waited for an error message
  and then killed the session from gdb.

  When set to IMAP (gdb_evolution_110915_imap.txt) the error message on screen 
stated:
  Error while performing operation. You must be working online to complete this 
operation

  When set to IMAP+ (gdb_evolution_110915_imapplus.txt) the error message 
stated:
  Failed to open folder. The reported error was Could not connect to 
mail2.ianbmacdonald.com: Input/output error

  Creating a completely new account seems to work fine. So I'll just
  purge the old one and migrate filters, etc.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Thu Sep 15 13:54:10 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (6 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/851153/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 851225] Re: evolution crashed with SIGSEGV in _int_malloc() when sending mail

2011-10-14 Thread iMac
I have not seen this again. Probably safe to close.  My apport is up and
var/crash clean so it will automatically reopen if it happens again.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/851225

Title:
  evolution crashed with SIGSEGV in _int_malloc() when sending mail

Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  Crash occurred while sending an email from a qmail IMAP+/SMTP account.
  Evolution had prompted me to confirm my desire to send in HTML format.
  I had just set my default to HTML in preferences during the Evolution
  session and this was the second email I was sending since changing the
  setting.  I did not click the Do Not Show Again box on the first
  occurrence of this diaglog which had previously resulted in a sent
  email without error earlier in the Evolution session.

  After clicking OK to the prompt, the crash occurred.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  CrashCounter: 1
  Date: Thu Sep 15 15:27:59 2011
  ExecutablePath: /usr/bin/evolution
  ProcCmdline: evolution
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0x7f5846073ce8 _int_malloc+88:   mov
0x8(%r14),%rax
   PC (0x7f5846073ce8) ok
   source 0x8(%r14) (0x3038322e3142) not located in a known VMA region 
(needed readable region)!
   destination %rax ok
   Stack memory exhausted (SP below stack segment)
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: evolution
  StacktraceTop:
   _int_malloc (av=0x7f58463941c0, bytes=5) at malloc.c:4304
   __GI___libc_malloc (bytes=5) at malloc.c:3660
   g_malloc (n_bytes=5) at /build/buildd/glib2.0-2.29.90/./glib/gmem.c:164
   g_strndup (str=0x7f584c0c6d20 {yv}80, n=4) at 
/build/buildd/glib2.0-2.29.90/./glib/gstrfuncs.c:164
   g_variant_type_info_get (type=0x7f584c0c6d20) at 
/build/buildd/glib2.0-2.29.90/./glib/gvarianttypeinfo.c:743
  Title: evolution crashed with SIGSEGV in _int_malloc()
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (6 days ago)
  UserGroups: adm admin cdrom dialout dip disk floppy fuse kvm libvirtd lpadmin 
netdev plugdev pulse pulse-access sambashare vboxusers vde2-net video

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/851225/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 874589] [NEW] Folder subscription interface kinda unusable

2011-10-14 Thread iMac
Public bug reported:

Basically there is no way to easily subscribe or unsubscribe folders,
when you have a lot of them.

An upstream patch works great against current 3.2.0-2ubuntu, please
merge into next package update.  Patch is attached

https://bugzilla.gnome.org/show_bug.cgi?id=660530

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: evolution 3.2.0-0ubuntu2
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 1.23-0ubuntu3
Architecture: amd64
Date: Fri Oct 14 16:10:56 2011
ProcEnviron:
 LANGUAGE=en
 PATH=(custom, no user)
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: evolution
UpgradeStatus: Upgraded to oneiric on 2011-09-09 (35 days ago)

** Affects: evolution
 Importance: Unknown
 Status: Unknown

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric running-unity

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/874589

Title:
  Folder subscription interface kinda unusable

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Basically there is no way to easily subscribe or unsubscribe folders,
  when you have a lot of them.

  An upstream patch works great against current 3.2.0-2ubuntu, please
  merge into next package update.  Patch is attached

  https://bugzilla.gnome.org/show_bug.cgi?id=660530

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.2.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 3.0.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu3
  Architecture: amd64
  Date: Fri Oct 14 16:10:56 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (35 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/874589/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 874589] Re: Folder subscription interface kinda unusable

2011-10-14 Thread iMac
** Patch added: patch for folder selection
   
https://bugs.launchpad.net/bugs/874589/+attachment/2545201/+files/evo.patch.folderselect

** Bug watch added: GNOME Bug Tracker #660530
   https://bugzilla.gnome.org/show_bug.cgi?id=660530

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=660530
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/874589

Title:
  Folder subscription interface kinda unusable

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Basically there is no way to easily subscribe or unsubscribe folders,
  when you have a lot of them.

  An upstream patch works great against current 3.2.0-2ubuntu, please
  merge into next package update.  Patch is attached

  https://bugzilla.gnome.org/show_bug.cgi?id=660530

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.2.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 3.0.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu3
  Architecture: amd64
  Date: Fri Oct 14 16:10:56 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (35 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/874589/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 849960] Re: GMail added through Online Accounts disappears

2011-10-12 Thread iMac
I tested the current upstream patch against current 3.2.0 and it fixes
this issue for me.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/849960

Title:
  GMail added through Online Accounts disappears

Status in The Evolution Mail  Calendaring Tool:
  New
Status in “evolution” package in Ubuntu:
  Confirmed

Bug description:
  Althought I used Google Contacts/Calendar in Natty, I did not have my
  GMail configured in Evolution prior to my Oneiric upgrade.

  After manually removing my old Google calendar and contacts
  configuration, I used Online Accounts to configure all available
  Google services, and noted that it instantly added my GMail Inbox to
  evolution in addition to contacts and calendar.

  It seemed to work fine for a few evolution loads but it is now missing
  and not visible in the Account list in preferences.  A quick toggle
  on/off in Online Accounts makes it reappear instantly.   The Contacts
  and Calendar services do not disappear.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Wed Sep 14 09:12:06 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (5 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/849960/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 777953] Re: Google Contacts don't work in Evolution: Cannot authenticate user: Invalid query

2011-10-09 Thread iMac
Although the handling of blank custom contact fields is fixed in
upcoming 11.10, I have seen this message also with legit authentication
issues.  In these other less frequent case you should ensure your client
is not locked out using
https://www.google.com/accounts/DisplayUnlockCaptcha.  This happens per
client (so other devices continue to work fine) when Google suspects any
sort of network issue.

Be sure to post back if this solves your issue as captcha handling
should be prioritized upstream IMHO.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/777953

Title:
  Google Contacts don't work in Evolution: Cannot authenticate user:
  Invalid query

Status in “evolution” package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: evolution

  Hello,
  I am trying to add my GMail address book with all its contacts to Evolution. 
All I get is this Error-Message:

  
  Unable to open address book
  This address book cannot be opened.  This either means that an incorrect URI 
was entered, or the server is unreachable.
  Detailed error message: Cannot authenticate user: Invalid query
  

  I'm aware of
  https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/720434 , but
  there it is said that the bug is fixed and a new one should be opened.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: evolution 2.32.2-0ubuntu7
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Thu May  5 17:54:55 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64 (20110413)
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=de_DE.UTF-8
   LC_MESSAGES=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/777953/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 849960] Re: GMail added through Online Accounts disappears

2011-10-05 Thread iMac
** Bug watch added: GNOME Bug Tracker #660721
   https://bugzilla.gnome.org/show_bug.cgi?id=660721

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=660721
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/849960

Title:
  GMail added through Online Accounts disappears

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  Confirmed

Bug description:
  Althought I used Google Contacts/Calendar in Natty, I did not have my
  GMail configured in Evolution prior to my Oneiric upgrade.

  After manually removing my old Google calendar and contacts
  configuration, I used Online Accounts to configure all available
  Google services, and noted that it instantly added my GMail Inbox to
  evolution in addition to contacts and calendar.

  It seemed to work fine for a few evolution loads but it is now missing
  and not visible in the Account list in preferences.  A quick toggle
  on/off in Online Accounts makes it reappear instantly.   The Contacts
  and Calendar services do not disappear.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Wed Sep 14 09:12:06 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (5 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/849960/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 857283] Re: Search folders use incorrect source folder

2011-10-03 Thread iMac
Hmm. Fix released seems misleading, as current 3.2.0-0ubuntu2 still
requires manual patching

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/857283

Title:
  Search folders use incorrect source folder

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Ubuntu oneiric 11.10
  evolution package version 3.1.91-0ubuntu1

  This was working previously (before the migration to mbox format)
  I have several IMAP accounts and use search folders to group mail together.
  Existing search folders contain correct mail from before the upgrade, but 
none since
  If I create a new search folder, and add a simple search filter on a single 
specific source folder, the filter works correctly but is applied to the wrong 
account
  If I edit the properties of a search folder, the one created previously has 
entries in the Specific folders list such as:
   email:1291939542.2208.31@slughorn/Fortress
  whereas a newly created search folder entry is always:
   folder:/INBOX
  Note that ALL entries in the list are folder:/INBOX regardless of the source 
IMAP account, whereas entries created in the previous version have different 
numbers presumably identifying the IMAP account.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/857283/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 848968] Re: Google Calendar reminders display unnecessarily

2011-10-03 Thread iMac
hmm.. says released as of 9-30, but today i don't see anything newer
that 3.2.0-0ubuntu2 that still requires manual patching

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/848968

Title:
  Google Calendar reminders display unnecessarily

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  Triaged

Bug description:
  When I add my google calendar account through the new Online Accounts
  feature I get an endless stream of notifications for all my calendar
  events going back some time .. perhaps a year.   Even after un-
  checking setting in the Calendar for Show reminder notifications,
  shutting down using evolution --force-shutdown, cleaning up any evo
  processes and purging the .cache/evolution/calendar directory,  the
  reminders do not stop flooding in.I expect it will be a long time
  until I stop getting them, since there are probably several a day
  going back years .. in multiple calendars.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.17-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  Date: Tue Sep 13 09:07:30 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/848968/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 862882] Re: lightdm segfault error 4 in libglib-2.0.so.0.3000.0

2011-10-03 Thread iMac
I can't reproduce, but it does happen from time to time.It happens
pretty much as I log in based on the dmesg time stamp (40-58 seconds).
Literally I can't do much in under a minute except type my password, and
I can tell from the wireless messages in the dmesg that it is after I
log in.

In the original report I found three occurring in the last 5 dmesg's
stored in /var/log, all right at login.   This time (attached dmesg) I
also checked last five boots and did not see any re-occurances, so it is
fairly rare.

It just happened again at 40 seconds, which is about as quick as I've
seen it, which probably means I typed my password in quickly.

Also later in this session I had a nautilus crash (which is why I even
peeked in my dmesg). I'll note the lightdm seg in that possibly bug to
see if anyone else also has this happen first.

Attached is my dmesg output from the current session.

** Attachment added: dmesg output
   
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/862882/+attachment/2504127/+files/111003_dmesg_lightdm.log

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/862882

Title:
  lightdm segfault error 4 in libglib-2.0.so.0.3000.0

Status in “lightdm” package in Ubuntu:
  Incomplete

Bug description:
  Noticed I have the following in dmesg

  [   58.336910] lightdm[1344]: segfault at 007b4800 ip
  7f88d4c5e2de sp 7fff274a65f0 error 4 in
  libglib-2.0.so.0.3000.0[7f88d4bd9000+f4000]

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: lightdm 1.0.0-0ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.19-generic 3.0.4
  Uname: Linux 3.0.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu2
  Architecture: amd64
  Date: Thu Sep 29 19:45:59 2011
  ProcEnviron:
   LANGUAGE=en
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (20 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/862882/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 862882] Re: lightdm segfault error 4 in libglib-2.0.so.0.3000.0

2011-10-03 Thread iMac
here is the actual message this time

[   40.078760] lightdm[1390]: segfault at 00a21380 ip
7fa3c8cef2de sp 7fff2a64ba60 error 4 in
libglib-2.0.so.0.3000.0[7fa3c8c6a000+f4000]

later in the session this happened, but not related as far as I can
tell, tracked in #865976, #865115

[  389.180501] nautilus[2471]: segfault at 70008 ip 7f8cdcf2c8be
sp 7fffd841e560 error 4 in libgconf-2.so.4.1.5[7f8cdcf12000+2d000]

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/862882

Title:
  lightdm segfault error 4 in libglib-2.0.so.0.3000.0

Status in “lightdm” package in Ubuntu:
  Incomplete

Bug description:
  Noticed I have the following in dmesg

  [   58.336910] lightdm[1344]: segfault at 007b4800 ip
  7f88d4c5e2de sp 7fff274a65f0 error 4 in
  libglib-2.0.so.0.3000.0[7f88d4bd9000+f4000]

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: lightdm 1.0.0-0ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.19-generic 3.0.4
  Uname: Linux 3.0.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu2
  Architecture: amd64
  Date: Thu Sep 29 19:45:59 2011
  ProcEnviron:
   LANGUAGE=en
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (20 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/862882/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 862882] Re: lightdm segfault error 4 in libglib-2.0.so.0.3000.0

2011-09-29 Thread iMac
-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/862882

Title:
  lightdm segfault error 4 in libglib-2.0.so.0.3000.0

Status in “lightdm” package in Ubuntu:
  New

Bug description:
  Noticed I have the following in dmesg

  [   58.336910] lightdm[1344]: segfault at 007b4800 ip
  7f88d4c5e2de sp 7fff274a65f0 error 4 in
  libglib-2.0.so.0.3000.0[7f88d4bd9000+f4000]

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: lightdm 1.0.0-0ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.19-generic 3.0.4
  Uname: Linux 3.0.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu2
  Architecture: amd64
  Date: Thu Sep 29 19:45:59 2011
  ProcEnviron:
   LANGUAGE=en
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (20 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/862882/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 862882] [NEW] lightdm segfault error 4 in libglib-2.0.so.0.3000.0

2011-09-29 Thread iMac
Public bug reported:

Noticed I have the following in dmesg

[   58.336910] lightdm[1344]: segfault at 007b4800 ip
7f88d4c5e2de sp 7fff274a65f0 error 4 in
libglib-2.0.so.0.3000.0[7f88d4bd9000+f4000]

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: lightdm 1.0.0-0ubuntu3
ProcVersionSignature: Ubuntu 3.0.0-12.19-generic 3.0.4
Uname: Linux 3.0.0-12-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 1.23-0ubuntu2
Architecture: amd64
Date: Thu Sep 29 19:45:59 2011
ProcEnviron:
 LANGUAGE=en
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: lightdm
UpgradeStatus: Upgraded to oneiric on 2011-09-09 (20 days ago)

** Affects: lightdm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/862882

Title:
  lightdm segfault error 4 in libglib-2.0.so.0.3000.0

Status in “lightdm” package in Ubuntu:
  New

Bug description:
  Noticed I have the following in dmesg

  [   58.336910] lightdm[1344]: segfault at 007b4800 ip
  7f88d4c5e2de sp 7fff274a65f0 error 4 in
  libglib-2.0.so.0.3000.0[7f88d4bd9000+f4000]

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: lightdm 1.0.0-0ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.19-generic 3.0.4
  Uname: Linux 3.0.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu2
  Architecture: amd64
  Date: Thu Sep 29 19:45:59 2011
  ProcEnviron:
   LANGUAGE=en
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (20 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/862882/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 831842] Re: evolution crashed with signal 5 in e_load_ui_builder_definition()

2011-09-29 Thread iMac
Evolution is still crashing, but apport doesn't seem to want to catch it
unless the factory process dies, which it is not doing.   Anyhow I
attached a gdb backtrace.


** Attachment added: gdb backtrace output
   
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/831842/+attachment/2484205/+files/gdb_evolution_110929.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/831842

Title:
  evolution crashed with signal 5 in e_load_ui_builder_definition()

Status in The Evolution Mail  Calendaring Tool:
  Incomplete
Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  DId the same as here Bug #831308 ,but this time system generated
  automatic report

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.5-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-9.12-generic 3.0.3
  Uname: Linux 3.0.0-9-generic i686
  Architecture: i386
  CrashCounter: 1
  Date: Tue Aug 23 10:53:45 2011
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Alpha i386 (20110814)
  ProcCmdline: evolution
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   LANGUAGE=en_US:en
  Signal: 5
  SourcePackage: evolution
  StacktraceTop:
   e_load_ui_builder_definition () from /usr/lib/evolution/3.2/libeutil.so.0
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   g_simple_async_result_complete () from 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/libedataserver-1.2.so.15
  Title: evolution crashed with signal 5 in e_load_ui_builder_definition()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/831842/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 831842] Re: evolution crashed with signal 5 in e_load_ui_builder_definition()

2011-09-29 Thread iMac
Actually, I just had an old apport evolution crash in /var/crash..  Re-
run with current 3.2.0-0ubuntu2, attached to bug
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/862924

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/831842

Title:
  evolution crashed with signal 5 in e_load_ui_builder_definition()

Status in The Evolution Mail  Calendaring Tool:
  Incomplete
Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  DId the same as here Bug #831308 ,but this time system generated
  automatic report

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.5-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-9.12-generic 3.0.3
  Uname: Linux 3.0.0-9-generic i686
  Architecture: i386
  CrashCounter: 1
  Date: Tue Aug 23 10:53:45 2011
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Alpha i386 (20110814)
  ProcCmdline: evolution
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   LANGUAGE=en_US:en
  Signal: 5
  SourcePackage: evolution
  StacktraceTop:
   e_load_ui_builder_definition () from /usr/lib/evolution/3.2/libeutil.so.0
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   g_simple_async_result_complete () from 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/libedataserver-1.2.so.15
  Title: evolution crashed with signal 5 in e_load_ui_builder_definition()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/831842/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 831842] Re: evolution crashed with signal 5 in e_load_ui_builder_definition()

2011-09-28 Thread iMac
My apport trace with 3.2.0-0ubuntu2 just ran on this same issue.

@ Pedro What does it do with that new trace data when I say Yes, it is
the same bug .. is it lost?

Sometimes I note that my bug is the same, but the original reporter
doesn't have the complete set of symbols installed..I am wondering in
these cases if it is better to create a new bug, and mark it as a dupe
noting the additional info.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/831842

Title:
  evolution crashed with signal 5 in e_load_ui_builder_definition()

Status in The Evolution Mail  Calendaring Tool:
  Incomplete
Status in “evolution” package in Ubuntu:
  Incomplete

Bug description:
  DId the same as here Bug #831308 ,but this time system generated
  automatic report

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.5-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-9.12-generic 3.0.3
  Uname: Linux 3.0.0-9-generic i686
  Architecture: i386
  CrashCounter: 1
  Date: Tue Aug 23 10:53:45 2011
  ExecutablePath: /usr/bin/evolution
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Alpha i386 (20110814)
  ProcCmdline: evolution
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   LANGUAGE=en_US:en
  Signal: 5
  SourcePackage: evolution
  StacktraceTop:
   e_load_ui_builder_definition () from /usr/lib/evolution/3.2/libeutil.so.0
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   ?? () from /usr/lib/evolution/3.2/modules/libevolution-module-addressbook.so
   g_simple_async_result_complete () from 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/libedataserver-1.2.so.15
  Title: evolution crashed with signal 5 in e_load_ui_builder_definition()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/831842/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 857283] Re: Search folders use incorrect source folder

2011-09-28 Thread iMac
Same as last, with patch flag set

** Attachment added: Patch for search folders
   
https://bugs.launchpad.net/evolution/+bug/857283/+attachment/2477569/+files/evo.patch.search1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/857283

Title:
  Search folders use incorrect source folder

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Ubuntu oneiric 11.10
  evolution package version 3.1.91-0ubuntu1

  This was working previously (before the migration to mbox format)
  I have several IMAP accounts and use search folders to group mail together.
  Existing search folders contain correct mail from before the upgrade, but 
none since
  If I create a new search folder, and add a simple search filter on a single 
specific source folder, the filter works correctly but is applied to the wrong 
account
  If I edit the properties of a search folder, the one created previously has 
entries in the Specific folders list such as:
   email:1291939542.2208.31@slughorn/Fortress
  whereas a newly created search folder entry is always:
   folder:/INBOX
  Note that ALL entries in the list are folder:/INBOX regardless of the source 
IMAP account, whereas entries created in the previous version have different 
numbers presumably identifying the IMAP account.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/857283/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 857283] Re: Search folders use incorrect source folder

2011-09-28 Thread iMac
The upstream patch (attached) resolves this issue

** Changed in: evolution
   Importance: Medium = Unknown

** Changed in: evolution
   Status: New = Unknown

** Changed in: evolution
 Remote watch: GNOME Bug Tracker #659729 = GNOME Bug Tracker #659726

** Attachment added: Patch for search folders
   
https://bugs.launchpad.net/evolution/+bug/857283/+attachment/2477568/+files/evo.patch.search1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/857283

Title:
  Search folders use incorrect source folder

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Ubuntu oneiric 11.10
  evolution package version 3.1.91-0ubuntu1

  This was working previously (before the migration to mbox format)
  I have several IMAP accounts and use search folders to group mail together.
  Existing search folders contain correct mail from before the upgrade, but 
none since
  If I create a new search folder, and add a simple search filter on a single 
specific source folder, the filter works correctly but is applied to the wrong 
account
  If I edit the properties of a search folder, the one created previously has 
entries in the Specific folders list such as:
   email:1291939542.2208.31@slughorn/Fortress
  whereas a newly created search folder entry is always:
   folder:/INBOX
  Note that ALL entries in the list are folder:/INBOX regardless of the source 
IMAP account, whereas entries created in the previous version have different 
numbers presumably identifying the IMAP account.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/857283/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 848968] Re: Google Calendar reminders display unnecessarily

2011-09-28 Thread iMac
This patch against current 3.2.0-0ubuntu2 resolves the duplication of
reminders.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/848968

Title:
  Google Calendar reminders display unnecessarily

Status in The Evolution Mail  Calendaring Tool:
  Confirmed
Status in “evolution” package in Ubuntu:
  Triaged

Bug description:
  When I add my google calendar account through the new Online Accounts
  feature I get an endless stream of notifications for all my calendar
  events going back some time .. perhaps a year.   Even after un-
  checking setting in the Calendar for Show reminder notifications,
  shutting down using evolution --force-shutdown, cleaning up any evo
  processes and purging the .cache/evolution/calendar directory,  the
  reminders do not stop flooding in.I expect it will be a long time
  until I stop getting them, since there are probably several a day
  going back years .. in multiple calendars.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.17-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  Date: Tue Sep 13 09:07:30 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/848968/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 853926] Re: Calendar colors changing to color of 2nd local calendar

2011-09-28 Thread iMac
Didn't catch this in current 3.2.0-0ubuntu2, however patch still applies
cleanly to source and resolves.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/853926

Title:
  Calendar colors changing to color of 2nd local calendar

Status in The Evolution Mail  Calendaring Tool:
  Fix Released
Status in “evolution” package in Ubuntu:
  New

Bug description:
  I have 3 Google calendars, two local calendars (Personal and Birthdays
  and Anniversaries).One of my google calendars keeps the color I
  have selected for it. The two other Google calendars change color
  to the color of my contact birthday calendar, which is the second
  local calendar.

  I only note that it is the second local calendar, as that seems to be
  the observation also made by the reporting of the similar upstream bug
  in Comment #2 https://bugzilla.gnome.org/show_bug.cgi?id=658835#c2

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Mon Sep 19 10:50:30 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (10 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/853926/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 848968] Re: Google Calendar reminders display unnecessarily

2011-09-27 Thread iMac
Tested the upstream patch that appears to resolve this issue for my
Google calendars

** Patch added: Patch for Calendar Last Notification Time
   
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/848968/+attachment/2469343/+files/evo.patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/848968

Title:
  Google Calendar reminders display unnecessarily

Status in The Evolution Mail  Calendaring Tool:
  Confirmed
Status in “evolution” package in Ubuntu:
  New

Bug description:
  When I add my google calendar account through the new Online Accounts
  feature I get an endless stream of notifications for all my calendar
  events going back some time .. perhaps a year.   Even after un-
  checking setting in the Calendar for Show reminder notifications,
  shutting down using evolution --force-shutdown, cleaning up any evo
  processes and purging the .cache/evolution/calendar directory,  the
  reminders do not stop flooding in.I expect it will be a long time
  until I stop getting them, since there are probably several a day
  going back years .. in multiple calendars.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.17-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.22.1-0ubuntu2
  Architecture: amd64
  Date: Tue Sep 13 09:07:30 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/848968/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 860806] [NEW] Address cards render extra phone number

2011-09-27 Thread iMac
Public bug reported:

Address cards render extra phone number.   Patch from upstream attached

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: evolution 3.1.92-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
Uname: Linux 3.0.0-11-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 1.23-0ubuntu1
Architecture: amd64
Date: Tue Sep 27 14:47:21 2011
ProcEnviron:
 LANGUAGE=en
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: evolution
UpgradeStatus: Upgraded to oneiric on 2011-09-09 (18 days ago)

** Affects: evolution
 Importance: Unknown
 Status: Unknown

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/860806

Title:
  Address cards render extra phone number

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Address cards render extra phone number.   Patch from upstream
  attached

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.92-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Tue Sep 27 14:47:21 2011
  ProcEnviron:
   LANGUAGE=en
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (18 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/860806/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 860806] Re: Address cards render extra phone number

2011-09-27 Thread iMac
** Patch added: Patch from upstream
   https://bugs.launchpad.net/bugs/860806/+attachment/2470741/+files/evo.patch

** Bug watch added: GNOME Bug Tracker #659874
   https://bugzilla.gnome.org/show_bug.cgi?id=659874

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=659874
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/860806

Title:
  Address cards render extra phone number

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Address cards render extra phone number.   Patch from upstream
  attached

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.92-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Tue Sep 27 14:47:21 2011
  ProcEnviron:
   LANGUAGE=en
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (18 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/860806/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 857283] Re: Search folders use incorrect source folder

2011-09-27 Thread iMac
The final note is a separate upstream issue,
https://bugzilla.gnome.org/show_bug.cgi?id=659726

** Bug watch added: GNOME Bug Tracker #659729
   https://bugzilla.gnome.org/show_bug.cgi?id=659729

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=659729
   Importance: Unknown
   Status: Unknown

** Bug watch added: GNOME Bug Tracker #659726
   https://bugzilla.gnome.org/show_bug.cgi?id=659726

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/857283

Title:
  Search folders use incorrect source folder

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Ubuntu oneiric 11.10
  evolution package version 3.1.91-0ubuntu1

  This was working previously (before the migration to mbox format)
  I have several IMAP accounts and use search folders to group mail together.
  Existing search folders contain correct mail from before the upgrade, but 
none since
  If I create a new search folder, and add a simple search filter on a single 
specific source folder, the filter works correctly but is applied to the wrong 
account
  If I edit the properties of a search folder, the one created previously has 
entries in the Specific folders list such as:
   email:1291939542.2208.31@slughorn/Fortress
  whereas a newly created search folder entry is always:
   folder:/INBOX
  Note that ALL entries in the list are folder:/INBOX regardless of the source 
IMAP account, whereas entries created in the previous version have different 
numbers presumably identifying the IMAP account.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/857283/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 856937] Re: Crash moving evolution contact (signal 5 in e_load_ui_builder_definition)

2011-09-22 Thread iMac
*** This bug is a duplicate of bug 831842 ***
https://bugs.launchpad.net/bugs/831842

** Bug watch added: GNOME Bug Tracker #659890
   https://bugzilla.gnome.org/show_bug.cgi?id=659890

** Also affects: evolution via
   https://bugzilla.gnome.org/show_bug.cgi?id=659890
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/856937

Title:
  Crash moving evolution contact (signal 5 in
  e_load_ui_builder_definition)

Status in The Evolution Mail  Calendaring Tool:
  Unknown
Status in “evolution” package in Ubuntu:
  New

Bug description:
  Moving a contact between evolution local contacts addressbook and a
  Google contact addressbook

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  CrashCounter: 1
  Date: Thu Sep 22 21:09:10 2011
  ExecutablePath: /usr/bin/evolution
  ProcCmdline: evolution
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  Signal: 5
  SourcePackage: evolution
  StacktraceTop:
   e_load_ui_builder_definition (builder=0x7fe64e018800, 
basename=0x7fe6333a6c40 eab-contact-duplicate-detected.ui) at e-util.c:320
   match_query_callback (contact=0x7fe64dde1070, match=0x7fe64dde12c0, 
type=optimized out, closure=0x7fe64dd82b90) at eab-contact-merging.c:596
   query_cb (source_object=optimized out, result=optimized out, 
user_data=0x7fe64de4b780) at eab-contact-compare.c:670
   g_simple_async_result_complete (simple=0x7fe64e1dd1e0) at 
/build/buildd/glib2.0-2.29.92/./gio/gsimpleasyncresult.c:749
   finish_async_op (async_data=optimized out, error=0x0, in_idle=0) at 
e-client.c:2281
  Title: evolution crashed with signal 5 in e_load_ui_builder_definition()
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (14 days ago)
  UserGroups: adm admin cdrom dialout dip disk floppy fuse kvm libvirtd lpadmin 
netdev plugdev pulse pulse-access sambashare vboxusers vde2-net video

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/856937/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 854232] Re: Google authentication failing due to unseen CAPTCHA

2011-09-22 Thread iMac
** Summary changed:

- Google authentication failing due to CAPTCHA
+ Google authentication failing due to unseen CAPTCHA

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/854232

Title:
  Google authentication failing due to unseen CAPTCHA

Status in Evolution Data Server:
  Incomplete
Status in “evolution-data-server” package in Ubuntu:
  New

Bug description:
  After the 3.1.91 to 3.1.92 update to evolution-data-server I have
  endless prompts for calendar authentication.  It seems that there was
  some breakage, perhaps with the keyring integration during this
  update.

  Inside evolution there was also an error displayed: 
  Error Loading Calendar

  Cannot open calendar: Unexpected HTTP status code 7 returned
  (Connection terminated unexpectedly)

  gdb output is attached

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.92-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Mon Sep 19 16:53:45 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution-data-server
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (10 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/854232/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 854232] Re: Google authentication failing due to CAPTCHA

2011-09-21 Thread iMac
I have confirmed that to solve this problem of the password prompt re-
occurring endlessly, just go to the following URL and complete the
CAPTCHA.

https://www.google.com/accounts/UnlockCaptcha

I am not aware of any other solution other than to wait it out (goes
away after some time) and/or switch networks.

I have had this issue occur on both Rogers and Bell networks which
likely rules out an ISP sniffing issue as the cause.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/854232

Title:
  Google authentication failing due to CAPTCHA

Status in Evolution Data Server:
  New
Status in “evolution-data-server” package in Ubuntu:
  New

Bug description:
  After the 3.1.91 to 3.1.92 update to evolution-data-server I have
  endless prompts for calendar authentication.  It seems that there was
  some breakage, perhaps with the keyring integration during this
  update.

  Inside evolution there was also an error displayed: 
  Error Loading Calendar

  Cannot open calendar: Unexpected HTTP status code 7 returned
  (Connection terminated unexpectedly)

  gdb output is attached

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.92-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Mon Sep 19 16:53:45 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution-data-server
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (10 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/854232/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 853926] Re: Calendar colors changing to color of 2nd local calendar

2011-09-20 Thread iMac
Looks like there is a final patch upstream that resolves this issue,
attached below

** Patch added: upstream patch
   
https://bugs.launchpad.net/evolution/+bug/853926/+attachment/2431544/+files/evo.patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/853926

Title:
  Calendar colors changing to color of 2nd local calendar

Status in The Evolution Mail  Calendaring Tool:
  New
Status in “evolution” package in Ubuntu:
  New

Bug description:
  I have 3 Google calendars, two local calendars (Personal and Birthdays
  and Anniversaries).One of my google calendars keeps the color I
  have selected for it. The two other Google calendars change color
  to the color of my contact birthday calendar, which is the second
  local calendar.

  I only note that it is the second local calendar, as that seems to be
  the observation also made by the reporting of the similar upstream bug
  in Comment #2 https://bugzilla.gnome.org/show_bug.cgi?id=658835#c2

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution 3.1.91-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Mon Sep 19 10:50:30 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (10 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/853926/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 854232] Re: Google authentication failing due to CAPTCHA

2011-09-20 Thread iMac
If you think your authentication failure may be due to CAPTCHA, try
using the unlock URL to tell Google you are human.

https://www.google.com/accounts/UnlockCaptcha

I have not had a re-occurrence yet, but online docs suggest it will
work.

The only way to confirm auth failures are indeed CAPTCHA (and not some
other issue) is to disable the calendar (to stop the password prompts)
and then navigate to the Properties and Retrieve the Calendars.   It
seems that this invokes the libgdata interface that will report back the
CAPTCHA failure.

According to the upstream developers the CalDAV interface being used
does not properly support the CAPTCHA exception, so this issue will
remain until things cutover entirely to the new auth mechs in libgdata
or Google updates how the CalDAV interface works.

Similar issues happen to iPhone users who integrate Calendars via CalDAV: 
http://www.google.com/support/forum/p/Calendar/thread?tid=78dc7e4076e4fe26hl=en
 

Another workaround if the unlockURL does not work may be to hit the
CalDAV interface in your browser and see if it gets unlocked there (and
capture any undocumented CalDAV failure exception).

Server: https://www.google.com/calendar/dav/y...@gmail.com/user/

Note: if you are trying to sync a secondary calendar, use this URL

Server: https://www.google.com/calendar/dav/[string of numbers and
letters]@group.calendar.google.com/user/

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/854232

Title:
  Google authentication failing due to CAPTCHA

Status in Evolution Data Server:
  New
Status in “evolution-data-server” package in Ubuntu:
  New

Bug description:
  After the 3.1.91 to 3.1.92 update to evolution-data-server I have
  endless prompts for calendar authentication.  It seems that there was
  some breakage, perhaps with the keyring integration during this
  update.

  Inside evolution there was also an error displayed: 
  Error Loading Calendar

  Cannot open calendar: Unexpected HTTP status code 7 returned
  (Connection terminated unexpectedly)

  gdb output is attached

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: evolution-data-server 3.1.92-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Mon Sep 19 16:53:45 2011
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: evolution-data-server
  UpgradeStatus: Upgraded to oneiric on 2011-09-09 (10 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/854232/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


  1   2   >