X2Go Bug report logs -
#1094
When connected to a x2go server that has nVidia's binary drivers most software will segfault.
Reply or subscribe to this bug.
Toggle useless messages
Report forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 27 Sep 2016 17:40:01 GMT) (full text, mbox, link).
Acknowledgement sent
to zingmars <zingmars@playgineering.com>
:
New Bug report received and forwarded. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 27 Sep 2016 17:40:02 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Package: x2goserver
Version: 4.0.1.19
When I connect to a x2go server that has an nVidia GPU using nVidia's
binary drivers most software (such as Firefox, Thunderbird, Cheese,
Transmission GUI etc.) will segfault on launch.
This can seemingly be fixed by setting the LD_LIBRARY_PATH variable to
wherever the nVidia drivers are (i.e. for nVidia-361 drivers just run
LD_LIBRARY_PATH=/usr/lib/nvidia-361" in the server's terminal.
Alternatively it seems that you can switch to the Noveau driver and the
issue won't occur, but this might not always be an option.
There's also a thread on ubuntuforums
(https://ubuntuforums.org/showthread.php?t=2337814) that also has a
video of this bug in action.
I'm using Ubuntu 16.04 with MATE.
[m7g2NXy.png (image/png, attachment)]
[signature.asc (application/pgp-signature, attachment)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 11 May 2017 19:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Matthew Moskewicz <moskewcz@gmail.com>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 11 May 2017 19:20:02 GMT) (full text, mbox, link).
Message #10 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
i ran into this issue on ubuntu 16.04 (64 bit), and i can confirm that both
workarounds (using Nouveau and setting LD_LIBRARY_PATH=/usr/lib/nvidia-375
) fix the issue.
to add a bit more info, it seems that in the failing case, glxinfo (or
presumably the other apps), can't find the GLX_indirect library that it
trys to load dynamically, which has something to glvnd:
https://github.com/NVIDIA/libglvnd
looking at ldd, you can see that glxinfo is finding the GL libraries fine,
using the system-set ld.so.conf settings that the nvidia driver sets up:
moskewcz@mari:/etc/ld.so.conf.d$ ldd /usr/bin/glxinfo
linux-vdso.so.1 => (0x00007ffe4779c000)
libGL.so.1 => /usr/lib/nvidia-375/libGL.so.1 (0x00007fcd87f35000)
libX11.so.6 => /usr/lib/x86_64-linux-gnu/libX11.so.6
(0x00007fcd87bfb000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fcd87831000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fcd8762d000)
libGLX.so.0 => /usr/lib/nvidia-375/libGLX.so.0 (0x00007fcd873fd000)
...
the paths are set here:
moskewcz@mari:/etc/ld.so.conf.d$ cat
/etc/ld.so.conf.d/x86_64-linux-gnu_EGL.conf
/usr/lib/nvidia-375
/usr/lib32/nvidia-375
using strace, we can see the difference that setting LD_LIBRARY_PATH makes:
# working case, opens the correct lib:
moskewcz@mari:/etc/ld.so.conf.d$ LD_LIBRARY_PATH=/usr/lib/nvidia-375 strace
glxinfo 2>&1 | grep GLX_ind
open("/usr/lib/nvidia-375/tls/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) =
-1 ENOENT (No such file or directory)
open("/usr/lib/nvidia-375/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = 4
# non-working case, fails to open libGLX_indirect.so:
moskewcz@mari:/etc/ld.so.conf.d$ strace glxinfo 2>&1 | grep GLX_ind
open("/lib/x86_64-linux-gnu/tls/x86_64/libGLX_indirect.so.0",
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/tls/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC)
= -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/x86_64/libGLX_indirect.so.0",
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = -1
ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/tls/x86_64/libGLX_indirect.so.0",
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/tls/libGLX_indirect.so.0",
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/x86_64/libGLX_indirect.so.0",
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC)
= -1 ENOENT (No such file or directory)
open("/lib/tls/x86_64/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = -1
ENOENT (No such file or directory)
open("/lib/tls/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No
such file or directory)
open("/lib/x86_64/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT
(No such file or directory)
open("/lib/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such
file or directory)
open("/usr/lib/tls/x86_64/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = -1
ENOENT (No such file or directory)
open("/usr/lib/tls/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT
(No such file or directory)
open("/usr/lib/x86_64/libGLX_indirect.so.0", O_RDONLY|O_CLOEXEC) = -1
ENOENT (No such file or directory)
[...snip many more repeats of failed-to-load libGLX_indirect...]
however, it's not clear why, under x2go, the nvidia code isn't searching in
/usr/lib/nvidia-375 -- but it's not clear what code it uses for the DL
loading, maybe it is somewhere in the glvnd code.
mwm
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Fri, 25 Jan 2019 05:55:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Gheorghe SOARE <g_soare@chim.upb.ro>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Fri, 25 Jan 2019 05:55:02 GMT) (full text, mbox, link).
Message #15 received at 1094@bugs.x2go.org (full text, mbox, reply):
Шановні пані та панове
Ви шукали кредит для початку нового бізнесу, фінансування проекту або виплати боргів?
Ось шанс, який Ви чекали, оскільки наша Кредитна компанія пропонує широкий спектр фінансових послуг, таких як кредити на нерухомість, кредити на заробітну плату, бізнес кредити, шкільні кредити, іпотечні та персональні кредити на тривалу та коротку перспективу з відсотками 3% .
Якщо ви зацікавлені, будь ласка, зв'яжіться з нами по електронній пошті fastservice.sunloansltd@fastservice.com, якнайшвидше і отримайте кредит, який Ви шукаєте протягом 72 годин. Ви також можете подати заявку на нашому веб-сайті за адресою www.sunloansltds.com або заповнити анкету кредиту нижче.
Ім'я:
Стать:
Країна:
Необхідна сума:
тривалість:
Мета:
Дякую,
З повагою,
SUN LOANS LTD
Електронна пошта: fastservice.sunloansltd@fastservice.com
Веб-сайт: www.sunloansltds.com
Телефон: +44 1173255522
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 04 Apr 2019 10:35:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Cicero Basilio <cicero@ufrnet.br>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 04 Apr 2019 10:35:02 GMT) (full text, mbox, link).
Message #20 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dragă utilizatorule,
Contul dvs. a depășit limita de cote stabilite de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până când nu vă revalidezi contul.
Pentru a revalida contul, faceți clic pe linkul de mai jos Re-validarea contului
http://spkinvesment.com/ug/zimbra/
(C) 2019 webmail NMLSR ID 39980
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 04 Jun 2019 14:00:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Lenny America Jaramillo Velez <lenny.jaramillo@hee.gob.ec>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 04 Jun 2019 14:00:02 GMT) (full text, mbox, link).
Message #25 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your account.
To Re-Validate account, Please click on the link below Re-Validate Account;
http://zimbraxxxxxxhelpdesk.moonfruit.com/
Failure to re-verify %0% will cause your email account to be temporarily closed. Thank you. Email team
(C) 2019 39 980 webmail ID NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 03 Jul 2019 09:40:02 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <ilcscustomercare@ilcs.co.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 03 Jul 2019 09:40:03 GMT) (full text, mbox, link).
Message #30 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote stabilite de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până când nu vă revalidezi contul.
Pentru a revalida contul, faceți clic pe linkul de mai jos Re-validarea contului;
http://validatezimbra.moonfruit.com/
Dacă nu re-verificați, va fi închis temporar contul dvs. de e-mail.
Mulțumesc.
Echipa de e-mail
(C) 2019 39980 webmail ID NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 03 Jul 2019 10:05:04 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <klara.sita@rs-jih.co.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 03 Jul 2019 10:05:04 GMT) (full text, mbox, link).
Message #35 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote stabilite de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până când nu vă revalidezi contul.
Pentru a revalida contul, faceți clic pe linkul de mai jos Re-validarea contului;
http://validatezimbra.moonfruit.com/
Dacă nu re-verificați, va fi închis temporar contul dvs. de e-mail.
Mulțumesc.
Echipa de e-mail
(C) 2019 39980 webmail ID NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 03 Jul 2019 10:05:04 GMT) (full text, mbox, link).
Acknowledgement sent
to klara sita <klara.sita@rs-jih.co.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 03 Jul 2019 10:05:04 GMT) (full text, mbox, link).
Message #40 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote stabilite de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până când nu vă revalidezi contul.
Pentru a revalida contul, faceți clic pe linkul de mai jos Re-validarea contului;
http://validatezimbra.moonfruit.com/
Dacă nu re-verificați, va fi închis temporar contul dvs. de e-mail.
Mulțumesc.
Echipa de e-mail
(C) 2019 39980 webmail ID NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 18 Jul 2019 13:45:01 GMT) (full text, mbox, link).
Acknowledgement sent
to "Zimbra" <ay@ihu.co.za>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 18 Jul 2019 13:45:01 GMT) (full text, mbox, link).
Message #45 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 18 Jul 2019 17:10:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Zimbra" <ay@ihu.co.za>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 18 Jul 2019 17:10:02 GMT) (full text, mbox, link).
Message #50 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 18 Jul 2019 19:55:01 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin" <ay@ihu.co.za>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 18 Jul 2019 19:55:01 GMT) (full text, mbox, link).
Message #55 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Mon, 22 Jul 2019 06:50:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin" <uknevrologij@zdravstvo.gov.mk>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Mon, 22 Jul 2019 06:50:02 GMT) (full text, mbox, link).
Message #60 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 25 Jul 2019 15:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "zimbra" <andy.fat@primetelecom.ro>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 25 Jul 2019 15:20:02 GMT) (full text, mbox, link).
Message #65 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a dep3!9it limita de cote stabilite de Administrator !9i este posibil s3 nu pute!Bi trimite sau primi mesaje noi pân3 când nu v3 revalidezi contul.
Pentru a revalida contul, face!Bi clic pe linkul de mai jos Re-validarea contului;
http://validatezimbra.moonfruit.com/
Dac3 nu re-verifica!Bi, va fi închis temporar contul dvs. de e-mail. Mul!Bumesc. Echipa de e-mail
(C) 2019 39 980 webmail ID NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 30 Jul 2019 10:10:02 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <vanzari@belarus-tractor.ro>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 30 Jul 2019 10:10:02 GMT) (full text, mbox, link).
Message #70 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator
și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați
contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai
jos Re-validare cont;http://validatezimbra.moonfruit.com
Dacă nu verificați din nou, va fi închis temporar contul dvs. de e-mail.
Mulțumesc. Echipa de e-mail(C) 2019 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 30 Jul 2019 10:15:01 GMT) (full text, mbox, link).
Acknowledgement sent
to "Jesse Peterson" <vanzari@belarus-tractor.ro>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 30 Jul 2019 10:15:02 GMT) (full text, mbox, link).
Message #75 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a dep3!9it limita de cote a!9a cum a fost stabilit de Administrator !9i este posibil s3 nu pute!Bi trimite sau primi mesaje noi pân3 nu revalida!Bi contul.
Pentru a revalida contul, v3 rug3m s3 face!Bi clic pe linkul de mai jos Re-validare cont;
http://validatezimbra.moonfruit.com
Dac3 nu verifica!Bi din nou, va fi închis temporar contul dvs. de e-mail. Mul!Bumesc. Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSRContul dvs. a depa?it limita de cote a?a cum a fost stabilit de Administrator ?i este posibil sa nu pute?i trimite sau primi mesaje noi pâna nu revalida?i contul. Pentru a revalida contul, va rugam sa face?i clic pe linkul de mai jos Re-validare cont; http://validatezimbra.moonfruit.com Daca nu verifica?i din nou, va fi închis temporar contul dvs. de e-mail. Mul?umesc. Echipa de e-mail (C) 2019 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 06 Aug 2019 23:55:01 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <cristian.cobeli@imar.ro>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 06 Aug 2019 23:55:01 GMT) (full text, mbox, link).
Message #80 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;
http://hepdexkvalidatezimbra.moonfruit.com/
Dacă nu verificați din nou, va fi închis temporar contul dvs. de e-mail. Mulțumesc. Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 20 Aug 2019 09:30:02 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra Admin <valerija.anastasova@mon.gov.mk>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 20 Aug 2019 09:30:02 GMT) (full text, mbox, link).
Message #85 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Estimado usuario de Zimbra,
Esto es para informarles que alguien más estaba intentando iniciar sesión en su cuenta de Zimbra desde una ubicación diferente {IP: 27.167.158.432 CHINA: 20 /08/2019 a las 04:25}
Si esto no es así, por favor, haga clic abajo para iniciar y actualizar su cuenta, solo tiene 48 horas para hacer esto y así mantener activa su cuenta de Zimbra.
Haga clic aquí para verificar su cuenta.
Este correo electrónico está sujeto a un seguimiento obligatorio, el incumplimiento de las normas en el cierre permanente de la cuenta.
Saludos
Equipo de soporte técnico
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 20 Aug 2019 13:45:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Zimbra IT Helpdesk <aalmada@mdp.gov.py>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 20 Aug 2019 13:45:02 GMT) (full text, mbox, link).
Message #90 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Seu acesso ao email foi restrito. Foi feita uma tentativa de fazer login na sua conta deste IP 168.195.206.93:3389. Se você não validar sua conta dentro de 24 horas, você não poderá enviar ou receber novos e-mails até que você valide novamente sua caixa de correio.prior para manter sua caixa de entrada. CLIQUE AQUI para verificar.Christian Oliveira
Verificação do helpdesk Zimbra IT
Copyright © 2019 Equipe Técnica Zimbra, Inc.
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 11 Sep 2019 18:55:02 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <micardi@undec.edu.ar>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 11 Sep 2019 18:55:02 GMT) (full text, mbox, link).
Message #95 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;
http://verifyzimbraaccounthelpdexxk.moonfruit.com/
Dacă nu verificați din nou, va fi închis temporar contul dvs. de e-mail. Mulțumesc. Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 18 Sep 2019 07:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Jessica" <iuliana.cindea@bcub.ro>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 18 Sep 2019 07:20:02 GMT) (full text, mbox, link).
Message #100 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
% 0%
Contul dvs. a dep3!9it limita de cote a!9a cum a fost stabilit de Administrator !9i este posibil s3 nu pute!Bi trimite sau primi mesaje noi pân3 nu revalida!Bi contul.
Pentru a revalida contul, v3 rug3m s3 face!Bi clic pe linkul de mai jos Re-validare cont;
http://verifyzimbraaccounthelpdexxk.moonfruit.com/
Nerespectarea% 0% din nou va determina închiderea contului dvs. de e-mail temporar. Mul!Bumesc. Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR% 0%
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 18 Sep 2019 07:50:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Jessica" <mlutfi@antara.co.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 18 Sep 2019 07:50:02 GMT) (full text, mbox, link).
Message #105 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
% 0%
Contul dvs. a dep3!9it limita de cote a!9a cum a fost stabilit de Administrator !9i este posibil s3 nu pute!Bi trimite sau primi mesaje noi pân3 nu revalida!Bi contul.
Pentru a revalida contul, v3 rug3m s3 face!Bi clic pe linkul de mai jos Re-validare cont;
http://verifyzimbraaccounthelpdexxk.moonfruit.com/
Nerespectarea% 0% din nou va determina închiderea contului dvs. de e-mail temporar. Mul!Bumesc. Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR% 0%
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 22 Oct 2019 17:15:01 GMT) (full text, mbox, link).
Acknowledgement sent
to "Zimbra" <dinkop.u@malangkota.go.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 22 Oct 2019 17:15:02 GMT) (full text, mbox, link).
Message #110 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 22 Oct 2019 20:45:04 GMT) (full text, mbox, link).
Acknowledgement sent
to "Zimbra" <dinkop.u@malangkota.go.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 22 Oct 2019 20:45:05 GMT) (full text, mbox, link).
Message #115 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 23 Oct 2019 04:45:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Zimbra" <dinkop.u@malangkota.go.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 23 Oct 2019 04:45:03 GMT) (full text, mbox, link).
Message #120 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 23 Oct 2019 09:40:01 GMT) (full text, mbox, link).
Acknowledgement sent
to "Zimbra" <gmm@sarovarhotels.com>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 23 Oct 2019 09:40:01 GMT) (full text, mbox, link).
Message #125 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 24 Oct 2019 15:40:50 GMT) (full text, mbox, link).
Acknowledgement sent
to "Zimbra" <gmm@sarovarhotels.com>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 24 Oct 2019 15:40:57 GMT) (full text, mbox, link).
Message #130 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Fri, 01 Nov 2019 03:20:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <jbanda@ipd.gob.pe>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Fri, 01 Nov 2019 03:20:02 GMT) (full text, mbox, link).
Message #135 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Estimado usuario de correo,
Esto es para informarle que alguien más estaba intentando iniciar sesión en su correo cuenta desde una ubicación diferente {IP: 27.167.158.432 CHINA: 31/10/2019 antes del 22:12}Si no es así, haga clic a continuación para iniciar sesión para actualizar y verificar su cuenta que solo tiene 48 horas para hacer esto para mantener su cuenta de correo active.if encontrar en spam o basura moverlo a la bandeja de entrada para su verificación
Haga clic aquí para verificar su cuenta.
Este correo electrónico está sujeto a un seguimiento obligatorio, si no lo cumple,
Cierre permanente de cuenta.
Saludos,
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Fri, 01 Nov 2019 09:35:02 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <fjanampa@cmc.com.pe>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Fri, 01 Nov 2019 09:35:02 GMT) (full text, mbox, link).
Message #140 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote stabilită de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până când nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;
http://validatezimbraaccountupgraderw.moonfruit.com/
Dacă nu verificați din nou, va fi închis temporar contul dvs. de e-mail.
Mulțumesc
Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Fri, 01 Nov 2019 09:55:01 GMT) (full text, mbox, link).
Acknowledgement sent
to "zimbra" <chawadol@siamrajplc.com>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Fri, 01 Nov 2019 09:55:01 GMT) (full text, mbox, link).
Message #145 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a dep3!9it limita de cote stabilit3 de Administrator !9i este posibil s3 nu pute!Bi trimite sau primi mesaje noi pân3 când nu revalida!Bi contul.
Pentru a revalida contul, v3 rug3m s3 face!Bi clic pe linkul de mai jos Re-validare cont;
http://validatezimbraaccountupgraderw.moonfruit.com/
Dac3 nu verifica!Bi din nou, va fi închis temporar contul dvs. de e-mail.
Mul!Bumesc
Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 17 Dec 2019 15:05:02 GMT) (full text, mbox, link).
Acknowledgement sent
to bugs.x2go.org<drmartens.moa@cln.com.ph>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 17 Dec 2019 15:05:02 GMT) (full text, mbox, link).
Message #150 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 22 Jan 2020 01:30:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin" <orsi@surakarta.go.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 22 Jan 2020 01:30:02 GMT) (full text, mbox, link).
Message #155 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 25 Feb 2020 09:45:01 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <ljimenez@cooperativalosandes.com>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 25 Feb 2020 09:45:01 GMT) (full text, mbox, link).
Message #160 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;
http://starstonecorporatecapital.com/ma/zimbra/
Nerespectarea nu va face ca contul dvs. de e-mail să fie închis temporar. Mulțumesc. Echipa de e-mail
(C) 2020 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 25 Feb 2020 10:00:03 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <adesurya@transjakarta.co.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 25 Feb 2020 10:00:03 GMT) (full text, mbox, link).
Message #165 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;
http://starstonecorporatecapital.com/ma/zimbra/
Nerespectarea din nou va determina închiderea contului dvs. de e-mail temporar. Mulțumesc. Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR
Email ini dan dokumen lampirannya ditujukan untuk digunakan oleh penerima e-mail. Apabila anda bukan orang yang tepat untuk menerima e-mail ini segera hapus e-mail ini. Isi e-mail ini mungkin tidak mewakili pandangan dan/atau pendapat PT. Transportasi Jakarta, kecuali bila dinyatakan dengan jelas demikian. Informasi yang terdapat dalam e-mail ini dapat bersifat rahasia. Dilarang memperbanyak, menyebarkan dan menyalin informasi rahasia kepada pihak lain tanpa persetujuan PT. Transportasi Jakart tidak bertanggung jawab atas penggunaan email ini oleh bukan penerima e-mail yang dituju dan atas kerusakan yang diakibatkan oleh e-mail ini jika terkena virus atau gangguan komunikasi.
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 25 Feb 2020 10:10:02 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <dirceu.morais@ufrr.br>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 25 Feb 2020 10:10:02 GMT) (full text, mbox, link).
Message #170 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
--
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;
http://starstonecorporatecapital.com/ma/zimbra/
Nerespectarea din nou va determina închiderea contului dvs. de e-mail temporar. Mulțumesc. Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 25 Feb 2020 10:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Eiji Harima <eiji.harima@ifsc.edu.br>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 25 Feb 2020 10:20:03 GMT) (full text, mbox, link).
Message #175 received at 1094@bugs.x2go.org (full text, mbox, reply):
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;
http://starstonecorporatecapital.com/ma/zimbra/
Nerespectarea din nou va determina închiderea contului dvs. de e-mail temporar. Mulțumesc. Echipa de e-mail
(C) 2019 39 980 ID webmail NMLSR
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 25 Feb 2020 14:15:01 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <ljimenez@cooperativalosandes.com>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 25 Feb 2020 14:15:02 GMT) (full text, mbox, link).
Message #180 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;
http://starstonecorporatecapital.com/ma/zimbra/
Nerespectarea nu va face ca contul dvs. de e-mail să fie închis temporar. Mulțumesc. Echipa de e-mail
(C) 2020 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 03 Mar 2020 21:05:04 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <ana.lopez@diputadospan.org.mx>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 03 Mar 2020 21:05:04 GMT) (full text, mbox, link).
Message #185 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Mărimea contului dvs. a ajuns la 970.54MB, care este de peste 90%
din cota ta de 1024.00MB. Vă rugăm să faceți clic pe linkul de mai jos pentru a evita
depășindu-ți cota.
http://www.veriacup.com/vo/zimbra/
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 05 Mar 2020 20:35:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Jonathan Jimenez <jonathan.jimenez@difson.gob.mx>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 05 Mar 2020 20:35:01 GMT) (full text, mbox, link).
Message #190 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dragă utilizatorule,
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.
Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont
http://www.veriacup.com/vo/zimbra/
Nerespectarea din nou va determina închiderea contului dvs. de e-mail temporar(C) 2020 adresă web NMLSR ID 399801
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 10 Mar 2020 11:10:02 GMT) (full text, mbox, link).
Acknowledgement sent
to zimbra <ph1315@gruponicxa.com.mx>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 10 Mar 2020 11:10:02 GMT) (full text, mbox, link).
Message #195 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;http://opeyyq.com/ro/zimbra/Nerespectarea nu va face ca contul dvs. de e-mail să fie închis temporar. Mulțumesc. Echipa de e-mail(C) 2020 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 18 Mar 2020 11:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Oficina Activos Luis Duran <jactivos@gruponicxa.com.mx>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 18 Mar 2020 11:20:02 GMT) (full text, mbox, link).
Message #200 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a depășit limita de cote așa cum a fost stabilit de Administrator și este posibil să nu puteți trimite sau primi mesaje noi până nu revalidați contul.Pentru a revalida contul, vă rugăm să faceți clic pe linkul de mai jos Re-validare cont;http://www.veriacup.com/ne/zimbra/Nerespectarea nu va face ca contul dvs. de e-mail să fie închis temporar. Mulțumesc. Echipa de e-mail(C) 2020 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 21 Mar 2020 10:05:01 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <apahest@atenk.am>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 21 Mar 2020 10:05:02 GMT) (full text, mbox, link).
Message #205 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 21 Mar 2020 12:15:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <apahest@atenk.am>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 21 Mar 2020 12:15:02 GMT) (full text, mbox, link).
Message #210 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 02 Apr 2020 21:35:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <ffon@arq.up.pt>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 02 Apr 2020 21:35:02 GMT) (full text, mbox, link).
Message #215 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 04 Apr 2020 19:50:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <itzy33@mgi.esdm.go.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 04 Apr 2020 19:50:02 GMT) (full text, mbox, link).
Message #220 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 04 Apr 2020 20:15:03 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <tpoiiit@htc-itc.com.vn>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 04 Apr 2020 20:15:03 GMT) (full text, mbox, link).
Message #225 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sun, 05 Apr 2020 13:50:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <dodi@cirebonkota.go.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sun, 05 Apr 2020 13:50:02 GMT) (full text, mbox, link).
Message #230 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Fri, 22 May 2020 05:30:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <admi@sudstvo.me>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Fri, 22 May 2020 05:30:02 GMT) (full text, mbox, link).
Message #235 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 02 Jun 2020 18:00:03 GMT) (full text, mbox, link).
Acknowledgement sent
to "Support" <ssacscdp@petropolis.rj.gov.br>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 02 Jun 2020 18:00:04 GMT) (full text, mbox, link).
Message #240 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Contul dvs. a dep3!9it limita de cote stabilit3 de Administrator !9i este posibil s3 nu pute!Bi trimite sau primi mesaje noi pân3 când nu revalida!Bi contul.
Pentru a revalida contul, v3 rug3m s3 face!Bi clic pe linkul de mai jos Re-validare cont;
http://cashloanserving.com/hu/zimbra/index.php?username=1094@bugs.x2go.org
Nerespectarea nu va face ca contul dvs. de e-mail s3 fie închis temporar. Mul!Bumesc. Echipa de e-mail
(C) 2020 39 980 ID webmail NMLSR
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 06 Jun 2020 19:50:01 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <abh@iuac.res.in>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 06 Jun 2020 19:50:02 GMT) (full text, mbox, link).
Message #245 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sun, 07 Jun 2020 19:40:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <hhikkl@bess.co.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sun, 07 Jun 2020 19:40:03 GMT) (full text, mbox, link).
Message #250 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sun, 07 Jun 2020 22:55:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin " <hhikkl@bess.co.id>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sun, 07 Jun 2020 22:55:02 GMT) (full text, mbox, link).
Message #255 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear 1094@bugs.x2go.org ,
Your account has exceeded it quota limit as set by Administrator, and you may not be able to send or receive new mails until you Re-Validate your 1094@bugs.x2go.org account.
To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re-Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 22 Jul 2020 17:35:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Postmaster <sgomez@dip-badajoz.es>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 22 Jul 2020 17:35:01 GMT) (full text, mbox, link).
Message #260 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Su buzón ha excedido el límite de almacenamiento establecido por el administrador y no puede enviar ni recibir nuevos mensajes hasta que confirme su correo electrónico. Haga clic en el siguiente enlace para verificar su dirección de correo electrónico.haga clic aquíGracias operador del sistema
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Mon, 27 Jul 2020 11:50:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <amumtaz@editec.cl>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Mon, 27 Jul 2020 11:50:01 GMT) (full text, mbox, link).
Message #265 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sun, 16 Aug 2020 12:45:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <dgomez@presidencia.gob.sv>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sun, 16 Aug 2020 12:45:02 GMT) (full text, mbox, link).
Message #270 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sun, 16 Aug 2020 20:25:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin" <xyin@ihug.co.nz>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sun, 16 Aug 2020 20:25:02 GMT) (full text, mbox, link).
Message #275 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Mon, 17 Aug 2020 20:50:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin" <ext6r13et9@ihug.co.nz>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Mon, 17 Aug 2020 20:50:03 GMT) (full text, mbox, link).
Message #280 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Fri, 21 Aug 2020 02:00:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Zimbra <sabrinagomes@compesa.com.br>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Fri, 21 Aug 2020 02:00:02 GMT) (full text, mbox, link).
Message #285 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 27 Aug 2020 09:15:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <pmrelburgon@posta.co.ke>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 27 Aug 2020 09:15:02 GMT) (full text, mbox, link).
Message #290 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 27 Aug 2020 09:20:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <pmrelburgon@posta.co.ke>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 27 Aug 2020 09:20:02 GMT) (full text, mbox, link).
Message #295 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 27 Aug 2020 17:05:01 GMT) (full text, mbox, link).
Acknowledgement sent
to webemail@mail2webmaster.com
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 27 Aug 2020 17:05:02 GMT) (full text, mbox, link).
Message #300 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Estimado diputadospan.org.mx Suscriptor,
Su cuenta diputadospan.org.mx ha excedido el límite de almacenamiento, que
es de 20 GB según lo establecido por su administrador, actualmente se
ejecuta en 20 GB, es posible que no pueda enviar o recibir correos nuevos
hasta que vuelva a validar su diputadospan.org.mx buzón.
Para volver a validar su buzón de correo, ingrese Nombre de usuario y
Contraseña en la columna que se proporciona a continuación para Validar su
cuenta de diputadospan.org.mx.
Nota: Haga clic en responder y complete las columnas a continuación para
enviarlo de vuelta, de modo que podamos actualizar nuestra base de datos de
la cuenta diputadospan.org.mx inmediatamente.
Nombre de usuario:
Contraseña:
Reconfirmar contraseña:
Número de teléfono:
envíanos
diputadospan.org.mx Support HelpDesk © 2020. Todos los derechos reservados.
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 29 Aug 2020 12:20:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <ddcoop@brdb.gov.bd>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 29 Aug 2020 12:20:01 GMT) (full text, mbox, link).
Message #305 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Tue, 01 Sep 2020 12:15:02 GMT) (full text, mbox, link).
Acknowledgement sent
to mssmadar44@gmail.com
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Tue, 01 Sep 2020 12:15:02 GMT) (full text, mbox, link).
Message #310 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Su buzón de correo ha superado el límite de almacenamiento definido por el administrador y no puede Envíe o reciba nuevos mensajes hasta que valide su correo electrónico Haga clic en el siguiente enlace para confirmar su correo electrónico Haga Clic aquí Gracias Administrador de Sistema
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 03 Sep 2020 04:40:02 GMT) (full text, mbox, link).
Acknowledgement sent
to "Admin" <dyyrty7@ihug.co.nz>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 03 Sep 2020 04:40:02 GMT) (full text, mbox, link).
Message #315 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 1094@bugs.x2go.org account, Please CLICK: Re- Validate 1094@bugs.x2go.org Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 05 Sep 2020 19:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <br.bhedia@mail.pbgb.co.in>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 05 Sep 2020 19:20:02 GMT) (full text, mbox, link).
Message #320 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
body {height: 100%; color:#000000; font-size:12pt; font-family:arial, helvetica, sans-serif;}Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Mon, 07 Sep 2020 21:05:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Zimbra Mailbox <320sm1019@nitrkl.ac.in>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Mon, 07 Sep 2020 21:05:02 GMT) (full text, mbox, link).
Message #325 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate 100% account, Please CLICK: Re- Validate 100% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 16 Sep 2020 06:30:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Postmaster <mmurillot@dip-badajoz.es>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 16 Sep 2020 06:30:01 GMT) (full text, mbox, link).
Message #330 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Su buzón de correo ha superado el límite de almacenamiento definido por el administrador y no puedeEnvíe o reciba nuevos mensajes hasta que valide su correo electrónico
Haga clic en el siguiente enlace para confirmar su correo electrónico Haga Clic aquí
GraciasAdministrador de Sistema
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 16 Sep 2020 06:30:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Postmaster <mmurillot@dip-badajoz.es>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 16 Sep 2020 06:30:02 GMT) (full text, mbox, link).
Message #335 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
body {height: 100%; color:#000000; font-size:12pt; font-family:arial, helvetica, sans-serif;}
Su buzón de correo ha superado el límite de almacenamiento definido por el administrador y no puedeEnvíe o reciba nuevos mensajes hasta que valide su correo electrónico
Haga clic en el siguiente enlace para confirmar su correo electrónico Haga Clic aquí
GraciasAdministrador de Sistema
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 16 Sep 2020 06:40:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Postmaster <mmurillot@dip-badajoz.es>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 16 Sep 2020 06:40:02 GMT) (full text, mbox, link).
Message #340 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
body {height: 100%; color:#000000; font-size:12pt; font-family:arial, helvetica, sans-serif;}
Su buzón de correo ha superado el límite de almacenamiento definido por el administrador y no puedeEnvíe o reciba nuevos mensajes hasta que valide su correo electrónico
Haga clic en el siguiente enlace para confirmar su correo electrónico Haga Clic aquí
GraciasAdministrador de Sistema
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 16 Sep 2020 12:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Zimbra Mailbox <220me5055@nitrkl.ac.in>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 16 Sep 2020 12:20:02 GMT) (full text, mbox, link).
Message #345 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your
Zimbra Mailbox has exceeded it quota/limit as set by zimbra team, and you may not be able to send Or receive new mails until you Re-activate your zimbra mailbox.To Re-activate100% account, Please CLICK: Re-Activate100% Zimbra Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Wed, 16 Sep 2020 12:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Zimbra Mailbox <220me5055@nitrkl.ac.in>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 16 Sep 2020 12:20:02 GMT) (full text, mbox, link).
Message #350 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your
Zimbra Mailbox has exceeded it quota/limit as set by zimbra team, and you may not be able to send Or receive new mails until you Re-activate your zimbra mailbox.To Re-activate100% account, Please CLICK: Re-Activate100% Zimbra Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Mon, 21 Sep 2020 14:05:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Zimbra Admin <520ec1002@nitrkl.ac.in>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Mon, 21 Sep 2020 14:05:02 GMT) (full text, mbox, link).
Message #355 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your
Zimbra Mailbox has exceeded it quota/limit as set by zimbra team, and you may not be able to send Or receive new mails until you Re-activate your zimbra mailbox. To Re-activate100% Active Account, CLICK: Re-Activate 0% Zimbra Account Active
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 26 Sep 2020 21:20:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Zimbra Admin <220cs2610@nitrkl.ac.in>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 26 Sep 2020 21:20:02 GMT) (full text, mbox, link).
Message #360 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your
Zimbra Mailbox has exceeded it quota/limit as set by zimbra team, and you may not be able to send Or receive new Emails until you Re-activate your mailbox. To Re-activate100% Account Active, CLICK: Re-Activate Your Account.
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sun, 25 Oct 2020 21:05:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <ljuarez@presidencia.gob.sv>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sun, 25 Oct 2020 21:05:02 GMT) (full text, mbox, link).
Message #365 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Thu, 29 Oct 2020 11:50:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <ljuarez@presidencia.gob.sv>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Thu, 29 Oct 2020 11:50:02 GMT) (full text, mbox, link).
Message #370 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Mon, 02 Nov 2020 11:25:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Postmaster <mmeza@munichorrillos.gob.pe>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Mon, 02 Nov 2020 11:25:01 GMT) (full text, mbox, link).
Message #375 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Su buzón de correo ha superado el límite de almacenamiento definido por el administrador y no puedeEnvíe o reciba nuevos mensajes hasta que valide su correo electrónico Haga clic en el siguiente enlace para confirmar su correo electrónico Haga Clic aquí GraciasAdministrador de Sistema
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Fri, 20 Nov 2020 15:00:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Postmaster <watencio@regiontacna.gob.pe>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Fri, 20 Nov 2020 15:00:04 GMT) (full text, mbox, link).
Message #380 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Su buzón de correo ha superado el límite de almacenamiento definido por el administrador y no puedeEnvíe o reciba nuevos mensajes hasta que valide su correo electrónico Haga clic en el siguiente enlace para confirmar su correo electrónico Haga Clic aquí GraciasAdministrador de Sistema
[Message part 2 (text/html, inline)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#1094
; Package x2goserver
.
(Sat, 09 Jan 2021 07:15:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Admin <pmrelburgon@posta.co.ke>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Sat, 09 Jan 2021 07:15:02 GMT) (full text, mbox, link).
Message #385 received at 1094@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Your Zimbra Mailbox Has Exceeded It Quota/Limit As Set By Zimbra Team, And You May Not Be Able To Send Or Receive New Mails Until You Re-Validate Your Zimbra Mailbox.To Re-Validate %0% account, Please CLICK: Re- Validate %0% Account
[Message part 2 (text/html, inline)]
Send a report that this bug log contains spam.
X2Go Developers <owner@bugs.x2go.org>.
Last modified:
Wed Jan 27 23:23:40 2021;
Machine Name:
ymir.das-netzwerkteam.de
X2Go Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.