Re: [mailop] Off-Topic - VMWare ESXI 7.0

2024-04-16 Thread Christoph Haas via mailop

Hello Kevin,

I'd  give another "+1" for Proxmox Virtual Environment (PVE) [1] as  
drop-in replacement for your VMware!


I'm using several Proxmox-setups (mainly PVE) in different  
environments and I'm just happy with it!!!


It supports full virtualization through KVM, Linux-containers through  
LXC, it's support is good and has a top price-performance ratio, the  
web-ui is smooth and functional, you can also build clusters e.g. with  
CEPH-storage.


It integrates very well with the Proxmox Backup Server (PBS) [2] and  
the Proxmox Mail Gateway (PMG) [3]



You can at least give it a try, since you can download and install the  
community edition of the PVE, PBS and PMG for free [4]


PVE community edition differs from the "pro" variants that is ha no  
access to the enterprise repository and no professional support, just  
community support through the forum [5].


Christoph.
P.S.: I'm not affiliated with Proxmox in any way, but I'm a happy user  
spreading the word and an Open Source Enthusiast :-)



[1] https://www.proxmox.com/en/proxmox-virtual-environment/overview
[2] https://www.proxmox.com/en/proxmox-backup-server/overview
[3] https://www.proxmox.com/en/proxmox-mail-gateway/overview
[4] https://pve.proxmox.com/wiki/Installation or search for "proxmox  
pve community install and setup guide" - there are several guides in  
the wild :-)

[5] https://forum.proxmox.com/


___
mailop mailing list
mailop@mailop.org
https://list.mailop.org/listinfo/mailop


Re: Shared / Public mailbox

2023-04-15 Thread Christoph Haas



Hi Michael,

it's simply easier to use a shared mailbox, because it shows up in you  
own folder pane and you don't have to switch between different  
user-accounts.


Dovecot has built in mechanisms for shared and public mailboxes  
(https://doc.dovecot.org/configuration_manual/shared_mailboxes/) - so  
why not use it?


Cheers
Christoph.

- Nachricht von Michael Peddemors  -
   Datum: Sat, 15 Apr 2023 08:37:10 -0700
 Von: Michael Peddemors 
Betreff: Re: Shared / Public mailbox
  An: dovecot@dovecot.org


Curious, what is the use case that you simply can't create three  
users, and share the password on on of the email accounts?


They can simply set up their email clients to check both mailboxes,  
why would this not work, and what is the use case that requires  
customizing your MTA?



On 2023-04-15 04:22, Stephane MAGNIER wrote:

Hi

I wish to create a share mailbox ( well.. Apparently, this is a  
public mailbox). Let's say I have 2 users : user1 & user2 and the  
need to share a mailbox for "general inquiries" emails..

[...]

--
"Catch the Magic of Linux..."

Michael Peddemors, President/CEO LinuxMagic Inc.

[...]
- Ende der Nachricht von Michael Peddemors  -


___
dovecot mailing list -- dovecot@dovecot.org
To unsubscribe send an email to dovecot-le...@dovecot.org


Re: quota-status fails when size=0 from Postfix

2021-07-29 Thread Christoph Haas

Am 29.07.21 um 22:08 schrieb Benny Pedersen:

On 2021-07-29 20:13, Christoph Haas wrote:


I really wouldn't want to script my own policy daemon just to avoid
backscatter. :(


why not ? :=)


I'm considering it. But I still hope that I'm doing something wrong or 
that Dovecot's plugin can be improved.


quota grace is ideal with same size as max mailsize in postfix, with is 
10MB as standard, the quota grace ensure one mail is possible to be sent 
if its not much mail left in dovecot to fill the quotas 100%


so setting it to 0 is silly like set non default settings in postfix 
main.cf, limits are there for something


I don't mind using the grace amount. But I don't want to accept that the 
quota-status tells me that the user is under quota only to be rejected 
in the next step with LMTP.


Re: quota-status fails when size=0 from Postfix

2021-07-29 Thread Christoph Haas

Noel:
The only solution is to reject all mail for an over-quota recipient 
during recipient restrictions, and if the mail passes that stage, 
deliver it anyway even if it makes the user go over quota.


Seconded. Is that possible with the current quota-status?

…Christoph


Re: check_policy_service sends size=0

2021-07-29 Thread Christoph Haas

Am 29.07.21 um 20:13 schrieb dove...@ptld.com:
If you are not aware, dovecot has by default a 10% over quota grace. So 
even being a couple of bytes over quota it would still accept a small 
message.


I had set…

plugin {
  quota_grace = 0
}


Re: quota-status fails when size=0 from Postfix

2021-07-29 Thread Christoph Haas



>> At least from Thunderbird, yes. But SIZE=… does not seem to be a
>> mandatory addition to the RCPT-TO line. Perhaps other mail clients do
>> not use SIZE either. Just guessting.
Correct. It's optional and can't be trusted anyway.

> http://www.postfix.org/SMTPD_POLICY_README.html
> The "size" attribute value specifies the message size that the client
> specified in the MAIL FROM command (zero if none was specified). With
> Postfix 2.2 and later, it specifies the actual message size after the
> client sends the END-OF-MESSAGE.



I misread that and Wietse (Postfix developer) kindly pointed me to the 
"after" part. So I found an evil way to make it work:


smtpd_recipient_restrictions = reject_unauth_destination
smtpd_end_of_data_restrictions = \
  check_policy_service inet:localhost:12340

The smtpd_end_of_data_restrictions are evaluated after the complete 
email was received. Of course this is wasteful because receiving a large 
email only to reject it afterwards is not very considerate.


Plus Dovecot complains that the policy service is only supposed to be 
used in the RCPT stage. So clearly this is a bad approach.




In my opinion the quota-status service from Dovecot should be able to 
reject any email no matter the size if the user is over quota. But I 
can't get that to work. I have set quota_grace to 0. And the user is 
using 100% quota. Still…


printf "recipient=t...@bullseye.example.org\nsize=100\n\n" | \
  nc localhost 12340
action=DUNNO

printf "recipient=t...@bullseye.workaround.org\nsize=1000\n\n" | \
  nc localhost 12340
action=554 5.2.2 Quota exceeded (mailbox for user is full)

Dovecot is still responding with DUNNO. It accepts size=0. It accepts 
size=100. Only at a much larger size (1000) it sends a rejection. Why is 
that?


In 
https://github.com/dovecot/core/blob/master/src/plugins/quota/quota-status.c 
there are several e_debug statements. How do I enable that debug logging 
for the quota plugin? Maybe that gives an idea.


I really wouldn't want to script my own policy daemon just to avoid 
backscatter. :(


Thanks in advance…
…Christoph


Re: check_policy_service sends size=0

2021-07-29 Thread Christoph Haas

Wietse Venema:
> AFTER the message is received, the message size is known.

Thanks, Wietse. Makes sense now. Like this it works:

smtpd_recipient_restrictions = reject_unauth_destination
smtpd_end_of_data_restrictions = \
  check_policy_service inet:localhost:12340

It's just a bit wasteful because the email would have to be received 
entirely before its size can be calculated.


It sounds like a better approach would be to make Dovecot reject any 
email no matter what the size is (even size=0) if a user is over quota. 
I'll take further discussion to the dovecot mailing list then.


Kindly… Christoph


check_policy_service sends size=0

2021-07-29 Thread Christoph Haas

Dear list,

I'm chasing a strange phenomenon with Postfix 3.5.6. I deliver virtual 
emails through LMTP to Dovecot. That works well. Now I'd also like to 
check the user's quota using Dovecot's quota service as described at

https://doc.dovecot.org/configuration_manual/quota_plugin/#quota-service

Relevant Postfix config:

smtpd_recipient_restrictions = \
  reject_unauth_destination \
  check_policy_service inet:localhost:12340

I usually test any mail server using swaks 
(http://jetmore.org/john/code/swaks/). So I ran:


swaks --to t...@bullseye.example.org

The test user is over quota but Dovecot still replies with DUNNO instead 
of rejecting the email. So I used tcpdump to look into the lines that 
Postfix sends on port 12340 to the policy service:


request=smtpd_access_policy
protocol_state=RCPT
protocol_name=ESMTP
client_address=…
client_name=…
client_port=41000
reverse_client_name=…
server_address=…
server_port=25
helo_name=yoda.example.org
sender=r...@yoda.example.org
recipient=t...@bullseye.example.org
recipient_count=0
queue_id=
instance=acde.6101de59.d9386.0
size=0
[…]

My Postfix log shows though:

postfix/qmgr[43700]: A031B9D69C: from=, size=501, 
nrcpt=1 (queue active)


What might be happening here? Postfix sends "recipient_count=0" and 
"size=0" although it logs that there is one recipient and the email has 
a size of 501 bytes.


At first I suspected swaks because it does not send a SIZE=… argument 
along with the RCPT TO. Then I checked

http://www.postfix.org/SMTPD_POLICY_README.html and found:

"The "size" attribute value specifies the message size that the client 
specified in the MAIL FROM command (zero if none was specified). With 
Postfix 2.2 and later, it specifies the actual message size after the 
client sends the END-OF-MESSAGE."


I do not encounter this when sending emails through Thunderbird. But I 
would still like to know the reason that it fails with swaks. After all 
swaks is just doing a regular SMTP connection AFAICT:


=== Trying bullseye.example.org:25...
=== Connected to bullseye.example.org.
<-  220 bullseye ESMTP Postfix (Debian/GNU)
 -> EHLO yoda.example.org
<-  250-bullseye
<-  250-PIPELINING
<-  250-SIZE 1024
<-  250-VRFY
<-  250-ETRN
<-  250-STARTTLS
<-  250-ENHANCEDSTATUSCODES
<-  250-8BITMIME
<-  250-DSN
<-  250-SMTPUTF8
<-  250 CHUNKING
 -> MAIL FROM:
<-  250 2.1.0 Ok
 -> RCPT TO:
<-  250 2.1.5 Ok
 -> DATA
<-  354 End data with .
 -> Date: Thu, 29 Jul 2021 18:44:32 +0200
 -> To: t...@bullseye.example.org
 -> From: r...@yoda.example.org
 -> Subject: test Thu, 29 Jul 2021 18:44:32 +0200
 -> Message-Id: <20210729184432.012...@yoda.example.org>
 -> X-Mailer: swaks v20181104.0 jetmore.org/john/code/swaks/
 ->
 -> This is a test mailing
 ->
 ->
 -> .
<-  250 2.0.0 Ok: queued as A031B9D69C
 -> QUIT
<-  221 2.0.0 Bye
=== Connection closed with remote host.

Any clues welcome. Been pulling my hair out the second day now.

…Christoph



Re: quota-status fails when size=0 from Postfix

2021-07-29 Thread Christoph Haas

Am 29.07.21 um 02:44 schrieb dove...@ptld.com:

- sending a test mail with SWAKS returns DUNNO
  (swaks is an SMTP test tool)

the difference appears to be the "size=0" line that Postfix
sends if I use SWAKS.


Now im guessing, maybe because you are using a testing tool, maybe it is 
not sending a message body in the email transmission, so postfix is 
correcting reporting that message has an email body of zero bytes 
(size=0).


There is a little body reading "This is a test mailing".

Dovecot must approve this because current maildir size + 0 != 
over limit. Maybe you are setup correctly and its just the testing tool 
that creates an edge case you wont experience in the wild.


That may totally be an edge case. But even then

over-quota + 0 = still-over-quota


Like you said when sending a real email it gets rejected right?


At least from Thunderbird, yes. But SIZE=… does not seem to be a 
mandatory addition to the RCPT-TO line. Perhaps other mail clients do 
not use SIZE either. Just guessting.


Thanks for your thoughts.

…Christoph


quota-status fails when size=0 from Postfix

2021-07-28 Thread Christoph Haas

Dear list,

I've been pulling my hair out today and kindly ask you for help. I'm on 
Debian Bullseye with Dovecot 2.3.13 and Postfix 3.5.6. Users are stored 
in SQL and I want to use quotas. Basically I followed 
https://doc.dovecot.org/configuration_manual/quota_plugin/#quota-service


With mail_debug enabled I see that the information from SQL is fetched 
correctly:


dovecot: quota-status(t...@bullseye.example.org)<45148><>: Debug: 
auth-master: userdb lookup(t...@bullseye.example.org): auth USER input: 
t...@bullseye.example.org quota_rule=*:bytes=1000 
home=/var/vmail/bullseye.example.org/test uid=5000 gid=5000


So the quota rule "*:bytes=1000" is loaded as intended for testing.
Before handing the email over to Dovecot through LMTP Postfix should 
call the quota-service (policy daemon) to determine if the user is over 
quota:


smtpd_recipient_restrictions = \
  reject_unauth_destination \
  check_policy_service inet:localhost:12340

This is still by the book.

What I found:
- sending a test mail with Thunderbird properly returns a 5xx status
  (over quota)
- sending a test mail with SWAKS returns DUNNO
  (swaks is an SMTP test tool)

I have used tcpdump to look into the communication on port 12340 and the 
difference appears to be the "size=0" line that Postfix sends if I use 
SWAKS. Output from SWAKS:

 -> RCPT TO:
<-  250 2.1.5 Ok

However if Thunderbird sends an email it uses something like

 -> RCPT TO: SIZE=12345

If I understand the situation correctly then Postfix extracts the SIZE=… 
value and uses that to send it to the quota-status policy daemon.


The user however is definitely over quota:

$> doveadm quota get -u t...@bullseye.example.org
Quota name TypeValue Limit %
User quota STORAGE 1 1 100
User quota MESSAGE 1 - 0

So whatever the size of the incoming email is, it should be rejected.
As quota-status returns DUNNO, Postfix will send the email to Dovecot 
through LMTP. And LMTP in turn does another quota check and correctly 
rejects the email:


postfix/lmtp[45153]: 573419D6A3: to=, 
relay=iredmail-test[private/dovecot-lmtp], delay=0.08, 
delays=0.05/0.01/0.01/0.01, dsn=5.2.2, status=bounced (host 
iredmail-test[private/dovecot-lmtp] said: 552 5.2.2 
 Quota exceeded (mailbox for user is full) 
(in reply to end of DATA command))


Problem here is that a bounce is created and Postfix is sending 
backscatter. Had "quota-service" indicated that the mailbox is over 
quota then Postfix had instantly rejected the email without any bounce.


I can also reproduce this effect by talking to the quota-status daemon:

printf "recipient=t...@bullseye.example.org\nsize=0\n\n" | nc localhost 
12340

action=DUNNO

printf "recipient=t...@bullseye.example.org\nsize=1\n\n" | nc 
localhost 12340

action=554 5.2.2 Quota exceeded (mailbox for user is full)

Is this a feature? A bug? An evil coincidence?

Thanks for reading this far. I know that this matter seems a bit 
complicated. But it feels like Dovecot's behavior leads to backscatter 
and of course I'd like to avoid that.


Kindly… Christoph


Debian system engineer - Hamburg/Germany

2021-03-22 Thread Christoph Haas

Hi…

I'm working for an adtech company in Hamburg/Germany and am looking
for a coworker to share my workload with.
 
Requirements:

- fluent in german and english (spoken/written)
- you can organize yourself well even when the todo list is long and people bug 
you
- 2+ years experience with Debian (or derivative) system administration
- know your way in the shell
- understand OS basics (memory, disk, load, network) and know where to look
- good network knowledge (routing, switching, VLANs, firewall, VPN)
- experience with web applications (load balancing, caching, certificates)
- you have worked with containers (maybe even Kubernetes?)
- experience with configuration management tools like Ansible
- basic development skills (bash, git, CI, SQL, deployments). Ruby/Python would 
be nice.
- don't despair and always have a plan B

Your tasks:
- manage many Debian servers with different applications
- support the developers with CI, deployments, debugging, system optimisation
- documentation (CMDB), monitoring (Zabbix), planning, internal consulting
- manage the HQ office network
 
The conditions:

- Well paid. Flexible working hours
- 90% home office possible if you can organize yourself well.
  So living anywhere in northern Germany may work.
- cope with a funny and crazy coworker (me)
- very welcoming and helpful IT team
- a sometimes chaotic agency that requires some patience and serenity to 
succeed in
 
Official job offer:https://www.performance-media.de/karriere/position/?id=327156  


Ping me if you have questions.

…Christoph




OpenPGP_signature
Description: OpenPGP digital signature


Bug#981471: RM:filepp - unmaintained upstream, low popcon score

2021-01-31 Thread Christoph Haas
Package: ftp.debian.org
Severity: normal



[imp] Spam-config with Rspamd in IMP

2020-11-01 Thread Christoph Haas

Hello,

I'm trying to setup a working spam-config for IMP. - The E-mail part  
is working and sends "innocent" and "spam" mail messages...


But far more interesting than getting emails, would be reporting to my  
external Rspamd via its REST-API.


The command "/usr/bin/curl --data-binary @-  
https://my.rspamd-server.com/rspamd/learnspam?password=mysecretpassword;  
expects the contents of an email as input.

E.g.:
"/usr/bin/curl --data-binary @-  
https://my.rspamd-server.com/rspamd/learnspam?password=mysecretpassword <  
email-from-/dev/stdin"


I've checked that the PHP-user (Apache: www-data) can execute the  
curl-command.



So I configured in /var/www/html/horde/imp/config/backends.local.php  
(only relevant parts)

'spam' => array(
   'innocent' => array(
   'display' => true,
   'program' => '/usr/bin/curl --data-binary @-  
https://my.rspamd-server.com/rspamd/learnham?password=mysecretpassword',

   ),
),
   'spam' => array(
   'display' => false,
   'program' => '/usr/bin/curl --data-binary @-  
https://my.rspamd-server.com/rspamd/learnspam?password=mysecretpassword',

   ),
)


But I get only errors like this in syslog:
Nov  1 16:00:10 myhordeserver HORDE: [imp] Error reporting spam:   %  
Total% Received % Xferd  Average Speed   TimeTime Time   
Current
Nov  1 16:00:10 myhordeserver HORDE:   
Dload  Upload   Total   SpentLeft  Speed
Nov  1 16:00:10 myhordeserver HORDE: \x0d  0 00 00  
0  0  0 --:--:-- --:--:-- --:--:-- 0\x0d100 118690  
0  100 11869  0   9626  0:00:01  0:00:01 --:--:--  9626\x0d100  
118690 0  100 11869  0   5312  0
:00:02  0:00:02 --:--:--  5312\x0d100 118690 0  100 11869   
0   3668  0:00:03  0:00:03 --:--:--  3668\x0d100 11885  10016  100  
11869  4   3286  0:00:04  0:00:03  0:00:01  3291
Nov  1 16:00:10 myhordeserver HORDE:  [pid 24371 on line 74 of  
"/var/www/html/horde/imp/lib/Spam/Program.php"]


Nov  1 17:13:45 groupware HORDE: [imp] Error reporting spam:   % Total  
   % Received % Xferd  Average Speed   TimeTime Time  Current
Nov  1 17:13:45 groupware HORDE:   
Dload  Upload   Total   SpentLeft  Speed
Nov  1 17:13:45 groupware HORDE: \x0d  0 00 00 0
   0  0 --:--:-- --:--:-- --:--:-- 0\x0d100  88770 0   
100  8877  0  48508 --:--:-- --:--:-- --:--:-- 48508
Nov  1 17:13:45 groupware HORDE:  [pid 26040 on line 74 of  
"/var/www/html/horde/imp/lib/Spam/Program.php"]




Then I've tried:
 'program' => '/bin/echo "$(>  
/var/www/html/horde/ham.log'
but with no result. The ham.log or spam.log files are created, but  
with no content.


The Docu says "Messages will be reported to the program via standard input."

How can I capture the input to 'program'?

Or even best: Can anybody tell me the correct way to use the  
Rspamd-REST-API for training a remote Rspamd-server?



Many thanks in advance!
Christoph.


--
christoph+ho...@haas-online.org

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: imp-unsubscr...@lists.horde.org


Re: [bareos-users] Unable to connect to PostgreSQL server although psql works fine

2020-07-13 Thread Christoph Haas
Hi Avery,

Am 12.07.20 um 21:23 schrieb oldtechaa:
> I know plenty of questions have been submitted before on various
> forums about inability of Bareos to connect to PostgreSQL, but none of
> the solutions seem to work in this case. Here's the last portion of
> the log (as bareos user) of
>
> |
> bareos-dir -t -f -d 500
> |
>
> bareos-dir (50): postgresql.c:239-0 pg_real_connect done
> bareos-dir (50): postgresql.c:241-0 db_user=bareos db_name=bareos
> db_password=*Redacted*
> bareos-dir: dird.c:1157-0 Could not open Catalog "Catalog",
> database "bareos".
> bareos-dir: dird.c:1162-0 postgresql.c:246 Unable to connect to
> PostgreSQL server. Database=bareos User=bareos
> Possible causes: SQL server not running; password incorrect;
> max_connections exceeded.
> 00 FVbareos-dir ERROR TERMINATION
> Please correct the configuration in /etc/bareos/bareos-dir.conf
>
By default on Debian PostgreSQL listens to the localhost interface only
IIRC. Is Bareos maybe not trying localhost but the hostname/IP that
binds to the ethernet interface?

Anything in the /var/log/*postgresql.log?

What does your database configuration in Bareos look like?

…Christoph


-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/18d50336-53a2-7b03-3361-9ca06b263c93%40christoph-haas.de.


[Bug 1634389] Re: Desktop icons losing text after suspend

2020-06-28 Thread Christoph Haas
Same on 20.04 by the way.

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to Kubuntu PPA.
https://bugs.launchpad.net/bugs/1634389

Title:
  Desktop icons losing text after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/kubuntu-ppa/+bug/1634389/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[kdeconnect] [Bug 413259] Files >=512MB (movies) corrupted during transfer without warning

2020-05-31 Thread Christoph Haas
https://bugs.kde.org/show_bug.cgi?id=413259

Christoph Haas  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED
 CC||k...@christoph-haas.de

--- Comment #2 from Christoph Haas  ---
Same here with Galaxy S8+. I ran a binary diff with a file that I copied twice
and the glitch happened once at position 0x8000 an once at position 0x1.

What is also noteworthy: the issue only happens when I initiate the copy from
the KDE desktop. The problems does not appear when I initiate the copy from the
smartphone.

This is a very critical bug in my opinion because you will lose video files by
moving them from the smartphone to the desktop.

-- 
You are receiving this mail because:
You are watching all bug changes.

Bug#931255: Update in stable?

2019-08-29 Thread Christoph Haas
I would like to see this simple fix in Buster. Without it the package
is nearly unusable in my opinion. Do you think the release team would
agree?

…Christoph



Bug#931255: Update in stable?

2019-08-29 Thread Christoph Haas
I would like to see this simple fix in Buster. Without it the package
is nearly unusable in my opinion. Do you think the release team would
agree?

…Christoph



Re: failed to pipe to program sa-learn-spam.sh

2019-06-16 Thread Christoph Haas via dovecot

Hi @lbutlr,

- Nachricht von "@lbutlr via dovecot"  -
 Datum: Thu, 6 Jun 2019 15:27:47 -0600
   Von: "@lbutlr via dovecot" 
Antwort an: "@lbutlr" 
   Betreff: Re: failed to pipe to program sa-learn-spam.sh
An: "@lbutlr via dovecot" 



On Jun 6, 2019, at 1:18 PM, @lbutlr via dovecot  wrote:

Hang on. I think this might be sa-learn that is crashing.


Fixing sa-learn eliminated the error dovecot was reporting.



--
When the stars threw down their spears And watered heaven with their
tears, Did He smile his work to see? Did He who made the Lamb make thee?



- Ende der Nachricht von "@lbutlr via dovecot"  -

(not only) just for the records: could you please tell us, how fixed  
you sa-learn?


Thanks
Christoph.

--
Christoph Haas



Is screenshots.debian.net at risk?

2019-03-23 Thread Christoph Haas
Fellow devs,

bear with me if the topic of the upcoming european copyright law (aka
§13) has been discussed in other mailing lists. As being responsible for
screenshots.debian.net I honestly am a bit worried about the
implications. As usual… IANAL.

Management summary: screenshots.debian.net is a web site that I
developed many many years ago and which is since then providing
user-generated screenshots for applications we manage in Debian.
Everyone can upload screenshots which are then moderated by pabs and me
before being published. We try to take care that screenshots of non-free
packages are not published to avoid copyright issues. And we claim to
publish screenshots under the same license as the software itself is
published. This has been the consensus after discussions on this list
~10 years ago. Screenshots can be browsed and searched at
https://screenshots.debian.net/ and are also directly linked to from a
lot of web sites like packages.debian.net or packages.ubuntu.com. The
site currently provides 8500 screenshots, has a pretty good uptime and
according to the web server stats gets a good amount of requests.

I am not only bringing this topic up because there will be a large
amount of rallies today (at least in Germany) and the topic is very hot.
The main reason is that I am working on an updated version of the web
site that will have a revised moderation workflow. pabs suggested that
we should allow all DDs to freely upload screenshots. That is already
implemented in the upcoming version and will be handled by our valued
sso.debian.net client certificates. That of course would mean that DDs
have to take care of copyright problems when uploading stuff.

A further idea of me is to allow everyone to use SSO providers like
Launchpad, Stackexchange, Google, Amazon and Github. I was considering a
system where users would have to upload a certain number of "good
screenshots" before being allowed to upload freely. I hoped to attract
more people to upload screenshots without the hassle and delay of going
through moderation. pabs and I discussed whether it's worth doing that.
Will there really be so much more user content that it's worth allowing
that?

Most of us are not lawyers so it may be hard to dig out the ultimate
truth. But I am personally worried because the server is run under my
name and I would not like to get into personal trouble while running a
platform that is providing user-generated content. Because that's what
all the EU law fuss is currently about.

I would welcome your thoughts on that. Thanks.

…Christoph




Re: Virus scan + removal on a mdbox mail storage

2019-02-21 Thread Christoph Haas via dovecot

Hello David,

- Nachricht von David Pottage via dovecot  -
 Datum: Thu, 21 Feb 2019 13:58:14 +
   Von: David Pottage via dovecot 
Antwort an: David Pottage 
   Betreff: Re: Virus scan + removal on a mdbox mail storage
An: dovecot@dovecot.org


[...]

NO! My mail storage is mdbox. And at the moment I have no intention to
convert it to Maildir!

Could I ask why? maildir is a better storage format is almost every respect.


well, I have a mailbox with about 50k emails ..., so one reason seems  
to me better backup performance with mdbox, since there are much less  
files to save.


Another reason - you can beat me for this - it's more freaky ;-) - no,  
just kidding ...
There was some years ago an interesting lecture from Peer Heinlein  
about the mdbox mail storage, I afterwards bought his "Dovecot Buch"  
of OpenSource Press and sticked to mdbox.


But I'll test backup of my mail storage converted to Maildir (which  
can easily be done thanks dsync)

- If there are no significant time difference, I might then change to Maildir.

[...]
The thing is that users will usually open emails shortly after they  
arrive. Most emails are not opened again later, especially the  
attachments.


you're right about this. And if a user has suspicions abaout a  
possibly infected attachment, one can delete the whole email without  
hassle.


[...]
For my day job I work for Sophos (A cyber security vendor), so all  
this is familiar to me. If you have the budget for a commercial  
product, then Sophos PureMessage does have postfix support.  
Technical details here:


https://docs.sophos.com/msg/pmx/help/en-us/msg/pmx/tasks/GSGConfigExtPostfixConfig.html

Other AV vendors probably have similar support, but I don't know any details.

--
David Pottage


I know about Sophos. Since my infrastructure is only for me and my  
family, I'll use the SAV9-free package ... and will try to integrate  
this with Postfix or AmaVisd.


- Ende der Nachricht von David Pottage via dovecot  
 -


Christoph.

--
Christoph Haas


bin_ijLLkhTCE.bin
Description: Öffentlicher PGP-Schlüssel


pgploURl1Izxg.pgp
Description: Digitale PGP-Signatur


Re: Virus scan + removal on a mdbox mail storage

2019-02-20 Thread Christoph Haas via dovecot

Hello David,

- Nachricht von David Pottage via dovecot  -
 Datum: Wed, 20 Feb 2019 14:56:51 +
   Von: David Pottage via dovecot 
Antwort an: David Pottage 
   Betreff: Re: Virus scan + removal on a mdbox mail storage
An: dovecot@dovecot.org



On 2019-02-20 01:46, Christoph Haas via dovecot wrote:

I need advice on how virus scan and removal can be done on a _mdbox_
mail storage?

On a maildir storage the virus scanner (e.g. clamav etc.) can detect
and remove a email that is infected, since every email and attachment
are stored in separate files.

But in mdbox the emails and attachments are compressed together in one
ore more mdbox-files ...

I am anxious to convert my mail storage for virus scanning into
maildir format, since I don't know if a virus or crypto trojan con be
activated with this converting action =:-o


To clarify: You want to convert your mail storage from mdbox to  
maildir, but you want to scan for viruses first?


NO! My mail storage is mdbox. And at the moment I have no intention to  
convert it to Maildir!


But I know, that virus detection and deletion is much easier with  
Maildir, since every mail is represented by a file. So if there is one  
mail infected, the file can easily deleted - also by external  
antivirus tools. Also there are no indices with Maildir.


On the opposite in the mdbox mail storage several mails are  
represented by one mdbox-file, so I'm looking for a way to detect and  
if necessary remove infected mails without damaging my mdbox storage  
or the indices.


One idea was to convert the mdbox storage for virus scanning on the  
fly to Maildir do the antivirus stuff and then vice versa. But this  
produces quite a lot of overhead ...


--> so I need a better way


You are doing things in the wrong order.

Firstly converting mail storage format is very unlikely to trigger a  
virus. For that to happen the virus author would need to find and  
write an exploit for dovecot that will trick it into treating email  
as executable code. While not impossible that is quite unlikely  
because there is no normal situation where dovecot will execute  
email as code. Also it is unlikely that a virus writer will target  
dovecot when Microsoft exchange is much more common and would be a  
higher value target.


Secondly, as a rule you want to scan email for viruses as it arrives  
and leaves, not when it is at rest in user mailboxes, again it is  
possible that a new virus will be discovered some time after the  
email arrives so a retrospective scan would find it, but that won't  
help you much because most users read their email and open  
attachments soon after the email arrives.


I'm completely with you! I have of course configured my postfix with  
Amavisd-new and all that stuff. But viruses evolve quite faster than  
detection patterns of e.g. Clam-AV.


So it is likely, that Clam-AV didn't detect a virus when scanning the  
mail-traffic on arrival and the malware now resides in the  
mdbox-storage.


For this situation an afterward virus scan of the existing mail  
storage on a regular basis seems to me an appropriate method to get  
rid of viruses, trojans etc. that were not detected on arrival and  
reside like a time bomb in my mail storage...


Btw.: what virus scanners besides Clam-AV are the people on this list  
using? And how is the virus scanner implemented: via Amavisd-new or  
e.g. rspamd or ...?

- I hope this question is not too offtopic for the dovecot list!

So my advice is to do the conversion to maildir now, then scan all  
the files as a one off, and going forward you should configure your  
email transport daemon (postfix, exim etc) to pass incoming (and  
possibly outgoing) email through clamav.


--
David Pottage



- Ende der Nachricht von David Pottage via dovecot  
 -


Cheers
Christoph.

P.S.: excuse my English - I'm no native speaker ...

--
Christoph Haas


binBMlAUlNpd8.bin
Description: Öffentlicher PGP-Schlüssel


pgpiePGwQChRc.pgp
Description: Digitale PGP-Signatur


Virus scan + removal on a mdbox mail storage

2019-02-19 Thread Christoph Haas via dovecot


Hi,

I need advice on how virus scan and removal can be done on a _mdbox_  
mail storage?


On a maildir storage the virus scanner (e.g. clamav etc.) can detect  
and remove a email that is infected, since every email and attachment  
are stored in separate files.


But in mdbox the emails and attachments are compressed together in one  
ore more mdbox-files ...


I am anxious to convert my mail storage for virus scanning into  
maildir format, since I don't know if a virus or crypto trojan con be  
activated with this converting action =:-o


Cheers
Christoph.



--
Christoph Haas


binBVUnA8ZNjK.bin
Description: Öffentlicher PGP-Schlüssel


pgpqO_sysrWRV.pgp
Description: Digitale PGP-Signatur


Re: How to backup maildir

2019-02-10 Thread Christoph Haas via dovecot

Hello Robert,

[... snip ...]

of course I'm totally with you: asking other people for help, is often  
a good - if even not the only way to getting things done. It was not  
my intention to insult you! I hope this did not come in to your mind ...


Personally I would have a look at the mentioned Dovecot-backup-script  
as a start. It does really a very good job! Cudos to Klaus Tachtler!


Another option could be, to sync your mail via mbsync/isync or  
offlineimap to your Notebook ... but as an alternative backup, it  
depends on how many users are on your Dovecot-server.


In a second cycle, you can then extend or modify this script - as I  
have been doing.


But you should bear in mind, that you should have at least 2-3  
replicas of your data on different storage, for having a good backup.


Cheers
Christoph.

--
Christoph Haas


bin3GRljaWbc1.bin
Description: Öffentlicher PGP-Schlüssel


pgpdeZ_qIsYCq.pgp
Description: Digitale PGP-Signatur


Re: How to backup maildir

2019-02-09 Thread Christoph Haas via dovecot

Hello Robert,

- Nachricht von Robert Moskowitz via dovecot   
-

 Datum: Sat, 9 Feb 2019 22:50:24 -0500
   Von: Robert Moskowitz via dovecot 
Antwort an: Robert Moskowitz , Dovecot Mailing  
List 

   Betreff: How to backup maildir
An: Dovecot Mailing List 


I have been thinking, and reading, on how to back up my mailserver.  
I have not found any approach that seems ready to use.



I have run years without any backup, but would really like to have  
something in place.


you're a really lucky guy! - I've been struck in the past for such  
carelessness on the one or other machine with dataloss ;-)


  I figure I can attach a USB drive and backup to that, then from  
there rsync to something elsewhere.  Further if that USB drive is a  
full mailserver image, I actually have a 'hot backup' where I only  
have to put the backup drive into a system and boot up at the last  
backup.


But this means properly copying all of /home/vmail and probably  
/home/sieve plus the /var/lib/mysql




Are you aware of the dovecot command "dsync"? (man dsync or  
https://wiki.dovecot.org/Tools/Doveadm/Sync)

This could be an approach of using dsync:
dsync backup -o plugin/quota= -f -u $user backup  
maildir:/mnt/USB/dovecot-backup/Maildir/$user/mail


Are there good tools that nicely does this?  Or do I choose a time  
late at night (only I am sometimes in non-US timezones) to shut down  
all services and just use rsync?


And stopping services itself is thought provoking.  What if Dovecot,  
amavis, mysql, or whatelse is in the middle of writing out a mail  
file what happens to that file and restart.


Just scary stuff and, in part, why I have never tackled this in the past.

thanks for all feedback



- Ende der Nachricht von Robert Moskowitz via dovecot  
 -


It really depends on how important your data is to you ... But you  
should really think about a general backup-strategy!
"Mr. Google" can help you to get some ideas how YOUR backup-strategy  
could look like...
Also there is much input for backing up dovecot with it's different  
mail storage flavours.
- But you have to invest some effort on your own, to search, read,  
evaluate and finally choose what's fitting into YOUR setup!


But as an starting point:
I'm using a for _MY setup_ modified and adopted version of Klaus  
Tachtler's dovecot-backup script:

https://github.com/tachtler/dovecot-backup/blob/master/dovecot_backup.sh

... mixed it with Borg Backup:
https://www.borgbackup.org/

... some further encryption, cloud storage and ... and ... and other stuff.


But as above mentioned:
YOU have to think about the grade of your paranoia level, how  
importand the data is to you in case of an data loss, time and money  
you are willing to invest and build upon this YOUR PERSONAL backup  
strategy.

- Sadly there is no one-size-fits-all!

Last famous words:
I've looked at your vita and was wondering about your post - you were  
writing RFCs, but have no clue about backing up your mail-data???  
Strange ...



Nevermind! Just my 2ct - hope this helps
Christoph.


--
Christoph Haas


binxAAP3atXH5.bin
Description: Öffentlicher PGP-Schlüssel


pgpK9JwJk_0VA.pgp
Description: Digitale PGP-Signatur


[bareos-users] Director crash report (error: Cannot access memory at address 0xaaaaaaaaaaaaaaaa)

2019-01-17 Thread Christoph Haas
Dear list,

my configuration has become pretty complex I admit. And, yes, I am
guilty of not paying for a subscription yet. :) However the director
process dies every few days and that frustrates me. Would it be of any
use for you or me to post director stack traces here?

Currently I'm suffering from this time and again with 17.2:

Thread 5 (Thread 0x7f7af2059700 (LWP 53369)):
#0  0x7f7afc4c4b3a in __waitpid (pid=2457, stat_loc=0x7f7af205758c,
options=0) at ../sysdeps/unix/sysv/linux/waitpid.c:29
#1  0x7f7afdbed614 in signal_handler (sig=7) at signal.c:240
#2  
#3  0x7f7afdbc3223 in bnet_host2ipaddrs (host=0x
, family=0,
errstr=0x7f7af2058028) at bnet.c:418
#4  0x7f7afdbcc8c6 in BSOCK_TCP::open (this=0x7f7ae8020d38,
jcr=0x38, name=0x18 ,
host=0x0, service=0x0, port=80, heart_beat=-6148914691236517206,
fatal=0x7f7af2058bdc) at bsock_tcp.c:182
#5  0x7f7afdbcb885 in BSOCK_TCP::connect (this=0x7f7ae8020d38,
jcr=0x7f7ae8001078, retry_interval=2, max_retry_time=0,
max_retry_time@entry=1, heart_beat=0,
heart_beat@entry=-6148914691236517206, name=0x47c561 "Storage daemon",
host=0x , service=0x0, port=-1431655766, verbose=false) at
bsock_tcp.c:115
#6  0x0044522e in connect_to_storage_daemon (jcr=0x7f7ae8001078,
retry_interval=, max_retry_time=,
verbose=) at sd_cmds.c:118
#7  0x00447f7b in statistics_thread_runner (arg=0x7f7ae8020b68,
arg@entry=0x0) at stats.c:233
#8  0x7f7afdbde2bf in lmgr_thread_launcher (x=0x25731d8) at
lockmgr.c:926
#9  0x7f7afc4bb494 in start_thread (arg=0x7f7af2059700) at
pthread_create.c:333
#10 0x7f7afb75cacf in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:97

This crash happened 3 minutes after the last backup job that wrote 17 TB
of data from a hardware server to tapes in a HP MSL tape library with
LTO-6 drives. That job finished with warnings…

17-Jan 00:20 bareos-dir JobId 358851: Bareos bareos-dir 17.2.3 (14Aug17):
  Build OS:   x86_64-pc-linux-gnu debian Debian GNU/Linux
8.0 (jessie)
  JobId:  358851
  Job:    backup-veeam-vbk.2019-01-15_00.52.08_30
  Backup Level:   Full
  Client: "veeam-fd" 17.2.4 (21Sep17) Microsoft Windows
Server 2012 Standard Edition (build 9200), 64-bit,Cross-compile,Win64
  FileSet:    "veeam-vbk" 2018-11-20 10:52:54
  Pool:   "TapeVeeam" (From Job resource)
  Catalog:    "MyCatalog" (From Client resource)
  Storage:    "Tape" (From Pool resource)
  Scheduled time: 15-Jan-2019 00:52:08
  Start time: 15-Jan-2019 00:52:10
  End time:   17-Jan-2019 00:20:43
  Elapsed time:   1 day 23 hours 28 mins 33 secs
  Priority:   10
  FD Files Written:   21
  SD Files Written:   21
  FD Bytes Written:   17,013,997,001,172 (17.01 TB)
  SD Bytes Written:   17,013,997,004,626 (17.01 TB)
  Rate:   99547.7 KB/s
  Software Compression:   None
  VSS:    no
  Encryption: no
  Accurate:   no
  Volume name(s):
BQA503L6|BQA506L6|BQA515L6|BQA507L6|TST005L6|TST048L6|BQA494L6
  Volume Session Id:  65
  Volume Session Time:    1547499850
  Last Volume Bytes:  1,523,225,526,167 (1.523 TB)
  Non-fatal FD errors:    0
  SD Errors:  7
  FD termination status:  OK
  SD termination status:  OK
  Termination:    Backup OK -- with warnings

I appreciate any suggestions.

Best regards…
  …Christoph


-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To post to this group, send email to bareos-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [bareos-users] Can python-bareos work with 18.2.4rc? / IndexError: list index out of range

2019-01-14 Thread Christoph Haas
Am 14.01.19 um 17:35 schrieb Frank Ueberschar:
> Python code for Bareos Version 18.2 has to be revised due to protocol
> changes. Meanwhile to getting started with Python Bareos it is
> recommended to use Bareos 17.2. 

Are the protocol changes documented publicly so I could maybe help fix
the Python code?

Otherwise I'm a bit swamped. I hoped to get rid of frequent
bareos-directory segfaults by trying the RC (which works pretty well…
although the crashes still happen just as often as with 17.2). So I
guess there's no way back on the directory and database/catalog. Or is it?

…Christoph


-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To post to this group, send email to bareos-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[PatternFly] Trouble using PatternFly in Rails

2018-12-19 Thread Christoph Haas
Dear list,

I would like to use PatternFly in a new Rails (5.2) project. The README
of https://github.com/patternfly/patternfly reads:

*"Patternfly now supports Sass natively!* Sass is included in the
|dist/sass| directory. Just add |node_modules| to your build tool's Sass
include paths then |@import 'patternfly/dist/sass/patternfly';| in your
Sass to get started!"

So far so good. My "node_modules" path is added to the assets lookup
path. I ran "npm install patternfly --save" and I renamed
app/assets/stylesheets/application.css to …/application.scss and added:

    @import 'patternfly/dist/sass/patternfly';

But I end up with this error message:

    File to import not found or unreadable: bootstrap/variables.

I am not using any fancy magic like Webpack here – just the built-in
sprockets asset management. I just want to load the CSS and JS the right
way. Has anyone managed to do that? Any hint is very appreciated because
I have been at it for hours.

Kind regards
 Christoph


___
PatternFly mailing list
PatternFly@redhat.com
https://www.redhat.com/mailman/listinfo/patternfly


Bug#910728: Acknowledgement (network-manager-openvpn-gnome: TLS authentication does not get saved)

2018-10-10 Thread Christoph Haas
Additional information:

I downgraded the packages…

- network-manager-openvpn

- network-manager-openvpn-gnome

…to version 1.8.4-1 and restarted the network manager. Now the problem
is gone. So apparently some recent change broke that functionality.



[Pkg-utopia-maintainers] Bug#910728: network-manager-openvpn-gnome: TLS authentication does not get saved

2018-10-10 Thread Christoph Haas
Package: network-manager-openvpn-gnome
Version: 1.8.6-1
Severity: important

Dear Maintainer,

suddenly the TLS authentication feature with an additional key file
and the key direction is dropped from the configuration.

I can re-enter the information and save but when opening the config
dialog again that information is gone. I cannot use OpenVPN connections
that require TLS pre-authentication any more.

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these template lines ***


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-rc2+ (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8), 
LANGUAGE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages network-manager-openvpn-gnome depends on:
ii  libc62.27-6
ii  libglib2.0-0 2.58.1-2
ii  libgtk-3-0   3.24.1-2
ii  libnm0   1.12.4-1
ii  libnma0  1.8.18-2
ii  libsecret-1-00.18.6-3
ii  network-manager-openvpn  1.8.6-1

network-manager-openvpn-gnome recommends no packages.

network-manager-openvpn-gnome suggests no packages.

-- no debconf information

___
Pkg-utopia-maintainers mailing list
Pkg-utopia-maintainers@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-utopia-maintainers

Bug#910728: network-manager-openvpn-gnome: TLS authentication does not get saved

2018-10-10 Thread Christoph Haas
Package: network-manager-openvpn-gnome
Version: 1.8.6-1
Severity: important

Dear Maintainer,

suddenly the TLS authentication feature with an additional key file
and the key direction is dropped from the configuration.

I can re-enter the information and save but when opening the config
dialog again that information is gone. I cannot use OpenVPN connections
that require TLS pre-authentication any more.

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these template lines ***


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-rc2+ (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8), 
LANGUAGE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages network-manager-openvpn-gnome depends on:
ii  libc62.27-6
ii  libglib2.0-0 2.58.1-2
ii  libgtk-3-0   3.24.1-2
ii  libnm0   1.12.4-1
ii  libnma0  1.8.18-2
ii  libsecret-1-00.18.6-3
ii  network-manager-openvpn  1.8.6-1

network-manager-openvpn-gnome recommends no packages.

network-manager-openvpn-gnome suggests no packages.

-- no debconf information



Bug#906189: linux-image-4.17.0-1-amd64: Laptop does not suspend in 4.17 - worked up to 4.16

2018-09-07 Thread Christoph Haas
Does it suffice to know that the problem does not occur any more with
kernel 4.19.0-rc2+?

I could continue with the "git bisect" but it would take days. :(




signature.asc
Description: OpenPGP digital signature


Bug#906189: linux-image-4.17.0-1-amd64: Laptop does not suspend in 4.17 - worked up to 4.16

2018-09-07 Thread Christoph Haas
Does it suffice to know that the problem does not occur any more with
kernel 4.19.0-rc2+?

I could continue with the "git bisect" but it would take days. :(




signature.asc
Description: OpenPGP digital signature


Bug#906189: linux-image-4.17.0-1-amd64: Laptop does not suspend in 4.17 - worked up to 4.16

2018-09-03 Thread Christoph Haas
git-bisect takes ages. I got this far yet:

- 4.16.0-2 = good
- 4.17.0-3 = bad
- 4.19.0-rc2 = good





signature.asc
Description: OpenPGP digital signature


Bug#906189: linux-image-4.17.0-1-amd64: Laptop does not suspend in 4.17 - worked up to 4.16

2018-09-03 Thread Christoph Haas
git-bisect takes ages. I got this far yet:

- 4.16.0-2 = good
- 4.17.0-3 = bad
- 4.19.0-rc2 = good





signature.asc
Description: OpenPGP digital signature


Bug#906189: linux-image-4.17.0-1-amd64: Laptop does not suspend in 4.17 - worked up to 4.16

2018-09-03 Thread Christoph Haas
I will try with bisect. Hass been a while that I compiled my kernel from
source. :)

I have not yet reported the problem to upstream mailing lists. Seems
though that the power optimizations added with kernel 4.17 would cause this.

Will report back.




signature.asc
Description: OpenPGP digital signature


Bug#906189: linux-image-4.17.0-1-amd64: Laptop does not suspend in 4.17 - worked up to 4.16

2018-09-03 Thread Christoph Haas
I will try with bisect. Hass been a while that I compiled my kernel from
source. :)

I have not yet reported the problem to upstream mailing lists. Seems
though that the power optimizations added with kernel 4.17 would cause this.

Will report back.




signature.asc
Description: OpenPGP digital signature


Bug#906189: linux-image-4.17.0-1-amd64: Laptop does not suspend in 4.17 - worked up to 4.16

2018-08-15 Thread Christoph Haas
Package: src:linux
Version: 4.17.8-1
Severity: important

Dear Maintainer,

I am using Debian Sid. Since the upgrade to linux-image-4.17.x I cannot
suspend my Lenovo X230 laptop any more. I close the lid or run
"systemctl suspend" to suspend the laptop but the laptop's power LED
blinks and after a few seconds the laptop resumes automatically.
This effect is easily reproducible.

Booting into 4.16.0-2-amd64 works well.

Linux kernel image 4.17.0-2 shows the mentioned problem.

It appears the multiple people on the internet ran into this problem. I
did not find a workaround to this problem and will work with 4.16 now.


-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
sys_vendor: LENOVO
product_name: 23252DG
product_version: ThinkPad X230
chassis_vendor: LENOVO
chassis_version: Not Available
bios_vendor: LENOVO
bios_version: G2ETB0WW (2.70 )
board_vendor: LENOVO
board_name: 23252DG
board_version: Not Defined

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 3rd Gen Core processor DRAM 
Controller [8086:0154] (rev 09)
Subsystem: Lenovo 3rd Gen Core processor DRAM Controller [17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: ivb_uncore

00:02.0 VGA compatible controller [0300]: Intel Corporation 3rd Gen Core 
processor Graphics Controller [8086:0166] (rev 09) (prog-if 00 [VGA controller])
Subsystem: Lenovo 3rd Gen Core processor Graphics Controller [17aa:21fa]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: i915
Kernel modules: i915

00:14.0 USB controller [0c03]: Intel Corporation 7 Series/C210 Series Chipset 
Family USB xHCI Host Controller [8086:1e31] (rev 04) (prog-if 30 [XHCI])
Subsystem: Lenovo 7 Series/C210 Series Chipset Family USB xHCI Host 
Controller [17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- 
Kernel driver in use: xhci_hcd
Kernel modules: xhci_pci

00:16.0 Communication controller [0780]: Intel Corporation 7 Series/C216 
Chipset Family MEI Controller #1 [8086:1e3a] (rev 04)
Subsystem: Lenovo 7 Series/C216 Chipset Family MEI Controller 
[17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: mei_me
Kernel modules: mei_me

00:16.3 Serial controller [0700]: Intel Corporation 7 Series/C210 Series 
Chipset Family KT Controller [8086:1e3d] (rev 04) (prog-if 02 [16550])
Subsystem: Lenovo 7 Series/C210 Series Chipset Family KT Controller 
[17aa:21fa]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: serial

00:19.0 Ethernet controller [0200]: Intel Corporation 82579LM Gigabit Network 
Connection [8086:1502] (rev 04)
Subsystem: Lenovo 82579LM Gigabit Network Connection (Lewisville) 
[17aa:21f3]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: e1000e
Kernel modules: e1000e

00:1a.0 USB controller [0c03]: Intel Corporation 7 Series/C216 Chipset Family 
USB Enhanced Host Controller #2 [8086:1e2d] (rev 04) (prog-if 20 [EHCI])
Subsystem: Lenovo 7 Series/C216 Chipset Family USB Enhanced Host 
Controller [17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- 
Kernel driver in use: ehci-pci
Kernel modules: ehci_pci

00:1b.0 Audio device [0403]: Intel Corporation 7 Series/C216 Chipset Family 
High Definition Audio Controller [8086:1e20] (rev 04)
Subsystem: Lenovo 7 Series/C216 Chipset Family High Definition Audio 
Controller [17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel

00:1c.0 PCI bridge [0604]: Intel Corporation 7 Series/C216 Chipset Family PCI 
Express Root Port 1 [8086:1e10] (rev c4) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ 

Bug#906189: linux-image-4.17.0-1-amd64: Laptop does not suspend in 4.17 - worked up to 4.16

2018-08-15 Thread Christoph Haas
Package: src:linux
Version: 4.17.8-1
Severity: important

Dear Maintainer,

I am using Debian Sid. Since the upgrade to linux-image-4.17.x I cannot
suspend my Lenovo X230 laptop any more. I close the lid or run
"systemctl suspend" to suspend the laptop but the laptop's power LED
blinks and after a few seconds the laptop resumes automatically.
This effect is easily reproducible.

Booting into 4.16.0-2-amd64 works well.

Linux kernel image 4.17.0-2 shows the mentioned problem.

It appears the multiple people on the internet ran into this problem. I
did not find a workaround to this problem and will work with 4.16 now.


-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
sys_vendor: LENOVO
product_name: 23252DG
product_version: ThinkPad X230
chassis_vendor: LENOVO
chassis_version: Not Available
bios_vendor: LENOVO
bios_version: G2ETB0WW (2.70 )
board_vendor: LENOVO
board_name: 23252DG
board_version: Not Defined

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 3rd Gen Core processor DRAM 
Controller [8086:0154] (rev 09)
Subsystem: Lenovo 3rd Gen Core processor DRAM Controller [17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: ivb_uncore

00:02.0 VGA compatible controller [0300]: Intel Corporation 3rd Gen Core 
processor Graphics Controller [8086:0166] (rev 09) (prog-if 00 [VGA controller])
Subsystem: Lenovo 3rd Gen Core processor Graphics Controller [17aa:21fa]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: i915
Kernel modules: i915

00:14.0 USB controller [0c03]: Intel Corporation 7 Series/C210 Series Chipset 
Family USB xHCI Host Controller [8086:1e31] (rev 04) (prog-if 30 [XHCI])
Subsystem: Lenovo 7 Series/C210 Series Chipset Family USB xHCI Host 
Controller [17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- 
Kernel driver in use: xhci_hcd
Kernel modules: xhci_pci

00:16.0 Communication controller [0780]: Intel Corporation 7 Series/C216 
Chipset Family MEI Controller #1 [8086:1e3a] (rev 04)
Subsystem: Lenovo 7 Series/C216 Chipset Family MEI Controller 
[17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: mei_me
Kernel modules: mei_me

00:16.3 Serial controller [0700]: Intel Corporation 7 Series/C210 Series 
Chipset Family KT Controller [8086:1e3d] (rev 04) (prog-if 02 [16550])
Subsystem: Lenovo 7 Series/C210 Series Chipset Family KT Controller 
[17aa:21fa]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: serial

00:19.0 Ethernet controller [0200]: Intel Corporation 82579LM Gigabit Network 
Connection [8086:1502] (rev 04)
Subsystem: Lenovo 82579LM Gigabit Network Connection (Lewisville) 
[17aa:21f3]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: e1000e
Kernel modules: e1000e

00:1a.0 USB controller [0c03]: Intel Corporation 7 Series/C216 Chipset Family 
USB Enhanced Host Controller #2 [8086:1e2d] (rev 04) (prog-if 20 [EHCI])
Subsystem: Lenovo 7 Series/C216 Chipset Family USB Enhanced Host 
Controller [17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- 
Kernel driver in use: ehci-pci
Kernel modules: ehci_pci

00:1b.0 Audio device [0403]: Intel Corporation 7 Series/C216 Chipset Family 
High Definition Audio Controller [8086:1e20] (rev 04)
Subsystem: Lenovo 7 Series/C216 Chipset Family High Definition Audio 
Controller [17aa:21fa]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel

00:1c.0 PCI bridge [0604]: Intel Corporation 7 Series/C216 Chipset Family PCI 
Express Root Port 1 [8086:1e10] (rev c4) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ 

Bug#905626: RM: pysieved -- ROM; Not maintained for years

2018-08-07 Thread Christoph Haas
Package: ftp.debian.org
Severity: normal

The package has not been maintained for a long time. Just recently I
received a bug report that has rendered the MySQL binding unusable for
quite a while before anyone noticed. The upstream maintainer doesn't
even list the software any more. Please let's remove it from Debian.



Bug#868783: synaptic: screenshots should be versioned as on packages.debian.org

2018-08-06 Thread Christoph Haas
I will fix the sort order of screenshots in the next release of
screenshots.debian.net. Thanks for the hint.



[Pkg-utopia-maintainers] Bug#890968: Works in 1.8.2-1

2018-04-06 Thread Christoph Haas
I just upgraded my system on unstable/Sid which gave me version 1.8.2-1 
of network-manager-openvpn. The problem appears to be fixed here now.


___
Pkg-utopia-maintainers mailing list
Pkg-utopia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-utopia-maintainers


Bug#890968: Works in 1.8.2-1

2018-04-06 Thread Christoph Haas
I just upgraded my system on unstable/Sid which gave me version 1.8.2-1 
of network-manager-openvpn. The problem appears to be fixed here now.




[pfSense] Bug found: Remote Logging Options and IPv6

2018-02-06 Thread Christoph Haas
Dear list,

I dare say that I have found a bug in version 2.4.2-RELEASE (amd64).

When setting up syslog forwarding in the "Remote Logging Options" I can
choose IPv6 as "IP Protocol" but when I save the field switches back to
IPv4 and logging fails to the given IPv6 address.

Should I report that somewhere?

Kind regards
 Christoph


___
pfSense mailing list
https://lists.pfsense.org/mailman/listinfo/list
Support the project with Gold! https://pfsense.org/gold

[bareos-users] Director crashes upon early 'update slots'

2018-01-23 Thread Christoph Haas
Has anyone else observed that? I can reproducably crash the bareos-dir 
by issuing "update slots" while the tape library is still scanning its 
inventory.


Traceback:

Thread 28 (Thread 0x7f85f6ffd700 (LWP 29690)):
#0  0x7f866129fb3a in __waitpid (pid=pid@entry=30708, 
stat_loc=stat_loc@entry=0x7f85f6ffbd8c, options=options@entry=0) at 
../sysdeps/unix/sysv/linux/waitpid.c:29

#1  0x7f8662a6fab4 in signal_handler (sig=11) at signal.c:240
#2  
#3  native_get_vol_list (ua=ua@entry=0x7f85b8021908, 
store=store@entry=0x55f4153eae88, listall=listall@entry=false, 
scan=scan@entry=false) at sd_cmds.c:382
#4  0x55f413aba273 in get_vol_list_from_storage 
(ua=ua@entry=0x7f85b8021908, store=0x55f4153eae88, 
listall=listall@entry=false, scan=scan@entry=254, 
cached=cached@entry=false) at storage.c:623
#5  0x55f413ae91cb in update_slots (ua=0x7f85b8021908) at 
ua_update.c:1127
#6  0x55f413aeb5dd in update_cmd (ua=0x7f85b8021908, cmd=out>) at ua_update.c:109
#7  0x55f413ac0b1e in UAContext::execute (cmd=, 
this=0x7f85b8021908) at ua_cmds.c:436

#8  do_a_command (ua=ua@entry=0x7f85b8021908) at ua_cmds.c:498
#9  0x55f413ae1813 in handle_UA_client_request 
(user=user@entry=0x7f8650001168) at ua_server.c:97
#10 0x55f413ab1488 in handle_connection_request (arg=0x7f8650001168) 
at socket_server.c:98
#11 0x7f8662a79525 in workq_server (arg=arg@entry=0x55f413d28e20 
) at workq.c:336
#12 0x7f8662a5fd9f in lmgr_thread_launcher (x=0x7f8650001388) at 
lockmgr.c:928
#13 0x7f8661296494 in start_thread (arg=0x7f85f6ffd700) at 
pthread_create.c:333
#14 0x7f8660537aff in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:97


--
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To post to this group, send email to bareos-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [bareos-users] Segfault… now what?

2018-01-15 Thread Christoph Haas
The downgraded version 17.2.3-3.1 worked well for a few days. Now I get 
segfaults again.


Anything I shoud look for?

Today's traceback:

Created /var/lib/bareos/bareos-dir.core.1803 for doing postmortem debugging
[New LWP 1803]
[New LWP 1804]
[New LWP 1833]
[New LWP 1834]
[New LWP 1835]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `/usr/sbin/bareos-dir'.
#0  0x7f0bb47207dd in nanosleep () at 
../sysdeps/unix/syscall-template.S:84

84    ../sysdeps/unix/syscall-template.S: No such file or directory.
[Current thread is 1 (Thread 0x7f0bb6f67740 (LWP 1803))]
$1 = 0x6b6b80  "bareos-dir"
$2 = 0x16f8368 "bareos-dir"
$3 = 0x16f83a8 "/usr/sbin/bareos-dir"
$4 = 0x7f0b9400c318 "PostgreSQL"
$5 = 0x7f0bb5e59506 "17.2.3 (14 Aug 2017)"
$6 = 0x7f0bb5e594f2 "x86_64-pc-linux-gnu"
$7 = 0x7f0bb5e594eb "debian"
$8 = 0x7f0bb5e594cd "Debian GNU/Linux 8.0 (jessie)"
$9 = "bareos", '\000' 
$10 = 0x7f0bb5e599e8 "debian Debian GNU/Linux 8.0 (jessie)"
Environment variable "TestName" not defined.
#0  0x7f0bb47207dd in nanosleep () at 
../sysdeps/unix/syscall-template.S:84

#1  0x7f0bb5e29514 in bmicrosleep (sec=60, usec=0) at bsys.c:171
#2  0x004470ef in wait_for_next_job 
(one_shot_job_to_run=0x5a5ca210 0x5a5ca210>) at scheduler.c:173
#3  0x0040f936 in main (argc=, argv=out>) at dird.c:434


Thread 5 (Thread 0x7f0ba9c98700 (LWP 1835)):
#0  0x7f0bb4720b3a in __waitpid (pid=17277, stat_loc=0x7f0ba9c9658c, 
options=0) at ../sysdeps/unix/sysv/linux/waitpid.c:29

#1  0x7f0bb5e49614 in signal_handler (sig=7) at signal.c:240
#2  
#3  0x7f0bb5e1f223 in bnet_host2ipaddrs (host=0x 
, family=0, 
errstr=0x7f0ba9c97028) at bnet.c:418
#4  0x7f0bb5e288c6 in BSOCK_TCP::open (this=0x7f0ba000e068, 
jcr=0x38, name=0x18 , 
host=0x0, service=0x0, port=80, heart_beat=-6148914691236517206, 
fatal=0x7f0ba9c97bdc) at bsock_tcp.c:182
#5  0x7f0bb5e27885 in BSOCK_TCP::connect (this=0x7f0ba000e068, 
jcr=0x7f0ba0001078, retry_interval=2, max_retry_time=0, 
max_retry_time@entry=1, heart_beat=0, 
heart_beat@entry=-6148914691236517206, name=0x47c561 "Storage daemon", 
host=0x 0x>, service=0x0, port=-1431655766, verbose=false) at 
bsock_tcp.c:115
#6  0x0044522e in connect_to_storage_daemon (jcr=0x7f0ba0001078, 
retry_interval=, max_retry_time=, 
verbose=) at sd_cmds.c:118
#7  0x00447f7b in statistics_thread_runner (arg=0x7f0ba001f3d8, 
arg@entry=0x0) at stats.c:233
#8  0x7f0bb5e3a2bf in lmgr_thread_launcher (x=0x17a8318) at 
lockmgr.c:926
#9  0x7f0bb4717494 in start_thread (arg=0x7f0ba9c98700) at 
pthread_create.c:333
#10 0x7f0bb39b8aff in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:97


Thread 4 (Thread 0x7f0baa499700 (LWP 1834)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at 
../sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:225
#1  0x7f0bb5e3a75c in bthread_cond_timedwait_p 
(cond=cond@entry=0x7f0bb606fec0 <_ZL5timer>, m=m@entry=0x7f0bb606ff00 
<_ZL11timer_mutex>, abstime=abstime@entry=0x7f0baa498e20, 
file=file@entry=0x7f0bb5e5dda2 "watchdog.c", line=line@entry=313) at 
lockmgr.c:811
#2  0x7f0bb5e528bd in watchdog_thread (arg=arg@entry=0x0) at 
watchdog.c:313
#3  0x7f0bb5e3a2bf in lmgr_thread_launcher (x=0x17b6af8) at 
lockmgr.c:926
#4  0x7f0bb4717494 in start_thread (arg=0x7f0baa499700) at 
pthread_create.c:333
#5  0x7f0bb39b8aff in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:97


Thread 3 (Thread 0x7f0baac9a700 (LWP 1833)):
#0  0x7f0bb39af6ad in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x7f0bb5e1e3e3 in bnet_thread_server_tcp 
(addr_list=addr_list@entry=0x16fcd78, max_clients=, 
sockfds=, client_wq=client_wq@entry=0x6b7540 
, nokeepalive=, 
handle_client_request=handle_client_request@entry=0x4420b0 
) at bnet_server_tcp.c:306
#2  0x0044233f in connect_thread (arg=arg@entry=0x16fcd78) at 
socket_server.c:115
#3  0x7f0bb5e3a2bf in lmgr_thread_launcher (x=0x17a8318) at 
lockmgr.c:926
#4  0x7f0bb4717494 in start_thread (arg=0x7f0baac9a700) at 
pthread_create.c:333
#5  0x7f0bb39b8aff in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:97


Thread 2 (Thread 0x7f0bb3197700 (LWP 1804)):
#0  0x7f0bb47207dd in nanosleep () at 
../sysdeps/unix/syscall-template.S:84
#1  0x7f0bb5e29514 in bmicrosleep (sec=sec@entry=30, 
usec=usec@entry=0) at bsys.c:171

#2  0x7f0bb5e3a22c in check_deadlock () at lockmgr.c:566
#3  0x7f0bb4717494 in start_thread (arg=0x7f0bb3197700) at 
pthread_create.c:333
#4  0x7f0bb39b8aff in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:97


Thread 1 (Thread 0x7f0bb6f67740 (LWP 1803)):
#0  0x7f0bb47207dd in nanosleep () at 
../sysdeps/unix/syscall-template.S:84

#1  0x7f0bb5e29514 in bmicrosleep (sec=60, usec=0) at bsys.c:171
#2  0x004470ef in wait_for_next_job 

Re: [bareos-users] Segfault… now what?

2018-01-14 Thread Christoph Haas
Do you suggest disabling stats collection for now?


Am 10.01.2018 um 12:42 schrieb Jörg Steffens:
> Have you enabled
> http://doc.bareos.org/master/html/bareos-manual-main-reference.html#directiveDirStorageCollect%20Statistics
> for any storage daemon?

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To post to this group, send email to bareos-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [bareos-users] Spooling question

2018-01-12 Thread Christoph Haas

Am 12.01.2018 um 11:54 schrieb 'Dennis Benndorf' via bareos-users:
Is there a possibility to spool to disk in case of tape robot errors? 
In Amanda all backups were made and saved in a spool directory and 
when the robot was back again dumps could get flushed. Bareos seems to 
fail dumps if the robot has errors and so data is not saved to spool 
directory. Any possibility to change this?

I know what you mean. I don't think that Bareos has that but I may be wrong.

What we do is backup most systems to disk first and then use "copy" jobs 
to migrate the data to tape. That allows us to quickly restore the most 
recent backup without having to get the tape. And you could set the 
retention of the disk jobs really low so that you use little disk space.


…Christoph

--
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To post to this group, send email to bareos-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[bareos-users] Segfault… now what?

2018-01-10 Thread Christoph Haas
I keep getting Segmentation Faults currently since I upgraded to version 
17.2.4-9.1 on Debian Stretch.


Can anyone tell me what might be the problem?


Created /var/lib/bareos/bareos-dir.core.12956 for doing postmortem debugging
[New LWP 12956]
[New LWP 12957]
[New LWP 12960]
[New LWP 12961]
[New LWP 12962]
[New LWP 54656]
[New LWP 54955]
[New LWP 57845]
[New LWP 59337]
[New LWP 59361]
[New LWP 59362]
[New LWP 59363]
[New LWP 59366]
[New LWP 59368]
[New LWP 59375]
[New LWP 59399]
[New LWP 59400]
[New LWP 59402]
[New LWP 59445]
[New LWP 59877]
[New LWP 59938]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `/usr/sbin/bareos-dir'.
#0  0x7fab9677d7dd in nanosleep () at 
../sysdeps/unix/syscall-template.S:84

84    ../sysdeps/unix/syscall-template.S: No such file or directory.
[Current thread is 1 (Thread 0x7fab9906c740 (LWP 12956))]
$1 = 0x55a067a364a0  "bareos-dir"
$2 = 0x55a069781368 "bareos-dir"
$3 = 0x55a0697813a8 "/usr/sbin/bareos-dir"
$4 = 0x7fab78095ad8 "PostgreSQL"
$5 = 0x7fab97f5d7c8 "17.2.4 (21 Sep 2017)"
$6 = 0x7fab97f5d7b4 "x86_64-pc-linux-gnu"
$7 = 0x7fab97f5d7ad "debian"
$8 = 0x7fab97f5dca8 "Debian GNU/Linux 9.3 (stretch)"
$9 = "bareos", '\000' 
$10 = 0x7fab97f5dcc8 "debian Debian GNU/Linux 9.3 (stretch)"
Environment variable "TestName" not defined.
#0  0x7fab9677d7dd in nanosleep () at 
../sysdeps/unix/syscall-template.S:84
#1  0x7fab97f2d1f4 in bmicrosleep (sec=60, usec=usec@entry=0) at 
bsys.c:171
#2  0x55a0677c5545 in wait_for_next_job 
(one_shot_job_to_run=) at scheduler.c:173
#3  0x55a06778a506 in main (argc=, argv=out>) at dird.c:434


Thread 21 (Thread 0x7fab21ffb700 (LWP 59938)):
#0  0x7fab9677d20d in read () at ../sysdeps/unix/syscall-template.S:84
#1  0x7fab97f2b3b7 in BSOCK_TCP::read_nbytes (this=0x7fab3c001588, 
ptr=, nbytes=4) at bsock_tcp.c:978
#2  0x7fab97f2acf5 in BSOCK_TCP::recv (this=0x7fab3c001588) at 
bsock_tcp.c:550
#3  0x55a0677a29a5 in bget_dirmsg (bs=bs@entry=0x7fab3c001588, 
allow_any_message=allow_any_message@entry=false) at getmsg.c:154
#4  0x55a0677b07ac in msg_thread (arg=arg@entry=0x7fab58036c28) at 
msgchan.c:434
#5  0x7fab97f3dd9f in lmgr_thread_launcher (x=0x7fab3c0014a8) at 
lockmgr.c:928
#6  0x7fab96774494 in start_thread (arg=0x7fab21ffb700) at 
pthread_create.c:333
#7  0x7fab95a15aff in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:97


Thread 20 (Thread 0x7fab22ffd700 (LWP 59877)):
#0  0x7fab9677d20d in read () at ../sysdeps/unix/syscall-template.S:84
#1  0x7fab97f2b3b7 in BSOCK_TCP::read_nbytes (this=0x7fab04001588, 
ptr=, nbytes=4) at bsock_tcp.c:978
#2  0x7fab97f2acf5 in BSOCK_TCP::recv (this=0x7fab04001588) at 
bsock_tcp.c:550
#3  0x55a0677a29a5 in bget_dirmsg (bs=bs@entry=0x7fab04001588, 
allow_any_message=allow_any_message@entry=false) at getmsg.c:154
#4  0x55a0677b07ac in msg_thread (arg=arg@entry=0x7fab440c11e8) at 
msgchan.c:434
#5  0x7fab97f3dd9f in lmgr_thread_launcher (x=0x7fab04001828) at 
lockmgr.c:928
#6  0x7fab96774494 in start_thread (arg=0x7fab22ffd700) at 
pthread_create.c:333
#7  0x7fab95a15aff in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:97


Thread 19 (Thread 0x7fab217fa700 (LWP 59445)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at 
../sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:225
#1  0x7fab97f3e23c in bthread_cond_timedwait_p 
(cond=cond@entry=0x7fab440c1530, m=m@entry=0x55a067a36ce0 <_ZL5mutex>, 
abstime=abstime@entry=0x7fab217f9b60, file=file@entry=0x55a0678098ba 
"msgchan.c", line=line@entry=497) at lockmgr.c:813
#2  0x55a0677b1db1 in wait_for_storage_daemon_termination 
(jcr=0x7fab440c11e8) at msgchan.c:497
#3  0x55a0677b05f2 in do_actual_migration (jcr=0x7fab440c11e8) at 
migrate.c:1569

#4  do_migration (jcr=jcr@entry=0x7fab440c11e8) at migrate.c:1635
#5  0x55a0677a582d in job_thread (arg=0x7fab440c11e8) at job.c:603
#6  0x55a0677aaf30 in jobq_server (arg=arg@entry=0x55a067a36b40 
) at jobq.c:485
#7  0x7fab97f3dd9f in lmgr_thread_launcher (x=0x7fab4401c3f8) at 
lockmgr.c:928
#8  0x7fab96774494 in start_thread (arg=0x7fab217fa700) at 
pthread_create.c:333
#9  0x7fab95a15aff in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:97


Thread 18 (Thread 0x7fab227fc700 (LWP 59402)):
#0  0x7fab9677d20d in read () at ../sysdeps/unix/syscall-template.S:84
#1  0x7fab97f2b3b7 in BSOCK_TCP::read_nbytes (this=0x7fab78009a98, 
ptr=, nbytes=4) at bsock_tcp.c:978
#2  0x7fab97f2acf5 in BSOCK_TCP::recv (this=0x7fab78009a98) at 
bsock_tcp.c:550
#3  0x55a0677a29a5 in bget_dirmsg (bs=bs@entry=0x7fab78009a98, 
allow_any_message=allow_any_message@entry=false) at getmsg.c:154
#4  0x55a0677b07ac in msg_thread (arg=arg@entry=0x7fab5800ab48) at 
msgchan.c:434
#5  0x7fab97f3dd9f in lmgr_thread_launcher (x=0x7fab78072c68) at 
lockmgr.c:928
#6  0x7fab96774494 in start_thread 

[pfSense] Traffic shaping with varying bandwidth link?

2017-12-14 Thread Christoph Haas
Dear list,

the documentation reads that traffic shaping requires to know the total
bandwidth of a link. In my case I'm on an LTE link because I live on the
countryside. Sometimes the link delivers 5 Mbps - on good days I get 20
Mbps.

Is there a way to use traffic shaping by prioritizing traffic? I would
like to tune down bulk traffic (e.g. huge game updates that my kids do
via Steam). My idea is to say: "if the link is saturated (queue piling
up) then set certain priorities for LAN IP addresses and/or services".
My router is located behind my ISPs router.

Currently I'm using a pipe of 10 Mbps. But either that doesn't shape
anything if the link goes below 10 Mbps. Or I'm wasting bandwidth
because I can't go above 10 Mbps.

I fear the worst. :) Thanks for your input anyway.

…Christoph


___
pfSense mailing list
https://lists.pfsense.org/mailman/listinfo/list
Support the project with Gold! https://pfsense.org/gold

Re: [pfSense] High-latency when traffic reaches 80% wirespeed

2017-10-05 Thread Christoph Haas
Am Mittwoch, den 04.10.2017, 15:05 -0400 schrieb ED Fochler:
> I have a similar situation and I solved it with limiters.  I'm also a fan of 
> limiters to ensure fair sharing of uplink bandwidth by internal users.  I 
> haven't tried changing system tunables though, so that solution may be better.

So far the situation was better this morning. But the web interface
became unresponsive and the OpenVPN daemon died. So I'm still scared.

> 
Nothing is sent through the limiter until you create a rule that catches the 
traffic and routes it through the limiter, so you're not going to accidentally 
slow everything down just by creating a rule.

I will try that.

> 
The behavior you're speaking of sounds like your machine is getting maxed out 
by interrupts or some internal bandwidth.  Setting up a limiter sounds like a 
better solution than pushing the hardware to the point of unrefined behavior.

Yes, I suspect something like that, too. The system load is going up
heavily (Load >=5) sometimes. However the web interface claims that the
load is around 30%. RAM and state tables look fine, too.

On Linux-based systems I regularly use iptables rules and often go near
wire speed. But the system load rarely goes up noticably. So I wonder
what part is really causing that load.

I ran "top" this morning and saw that the "filterlog" process was at
the top of the list. My firewall rules though do not do any logging at
the moment. Could that still be a problem?

Thanks for your suggestions so far. I'll try them all.

…Christoph

___
pfSense mailing list
https://lists.pfsense.org/mailman/listinfo/list
Support the project with Gold! https://pfsense.org/gold

Re: [pfSense] High-latency when traffic reaches 80% wirespeed

2017-10-05 Thread Christoph Haas
Am Mittwoch, den 04.10.2017, 19:13 + schrieb Steve Yates:
> Christoph, if you are using CARP/HA for your two routers, see 
> https://redmine.pfsense.org/issues/4310 "Limiters + HA results in hangs on 
> secondary."

Not yet but I'll look out to that. Thanks.

> Alternatively if the overnight traffic is due to an rsync, rsync can limit 
> its own bandwidth also.

I suspect some kind of backup job. There are many different data
transfers going on in the network. So a general solution like limiting
sounds better.

___
pfSense mailing list
https://lists.pfsense.org/mailman/listinfo/list
Support the project with Gold! https://pfsense.org/gold

[pfSense] High-latency when traffic reaches 80% wirespeed

2017-10-04 Thread Christoph Haas
Dear list,

I have become a huge fan of pfSense and managed to replace our old
routers at work by two nifty Netgate SG-4860 gateways. They work nearly
perfectly. I just have a few seperate internal VLANs (e.g. for
administration, monitoring and backup) that give me a headache. Every
day at the same time(s) there are spikes in traffic (I can see in the
dashboard) between two VLANs. Traffic goes up to pretty much 800 Mbps
for 1-2 minutes.

During that time our monitoring system goes wild. High latencies and
even ping losses. CPU load of the router is shown at around 50%. Once
the traffic goes below 800 Mbps all is instantly fine again.

I tried to simplify the firewall rules (e.g. let through all the
traffic) but that did not help. Is there anything I can do? Any hidden
switches? Anything to find and fix the situation? Traffic shaping for
ICMP? Unicorn dust?

Thanks in advance for your hints.

…Christoph
___
pfSense mailing list
https://lists.pfsense.org/mailman/listinfo/list
Support the project with Gold! https://pfsense.org/gold

Re: [bareos-users] Command-line restore does not consider where=

2017-03-24 Thread Christoph Haas
Hi Stephan,
Am Donnerstag, den 23.03.2017, 15:29 +0100 schrieb Stephan Duehr:
> using where= like what you are trying looks correct.
> 
> Did you make sure your job definition starts with
> Job {
>   Name = "restore-mysql"
>   ...
> }

Yes.

> Did you issue the reload command in bconsole after adding
> your job definition?

Yes.

> Did it throw any error?

No.

> Which version of Bareos are you using?

16.2.4-12.1 on Debian Jessie.

…Christoph

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To post to this group, send email to bareos-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[bareos-users] Command-line restore does not consider where=

2017-03-22 Thread Christoph Haas
Dear list,

I'd like to do automated restores like this:

restore comment=restore-mysql-for-dbrestore-from-maidnb
restorejob=restore-mysql client=maindb-fd restoreclient=dbrestore-fd
fileset=Mysql where=/srv/mysql select current all done yes

The job defintion:

  Name = "restore-mysql"
  Type = Restore
  FileSet = "Mysql"
  Storage = Tape
  Pool = Tape
  Messages = Standard
  Where = /srv/mysql
  Client = bareos-fd
}

However the restores still goes to /mnt/snap/data and not into
/srv/mysql where I wanted it to go ("Where" parameter).

The running job also shows no signs of a "where":

*show job=restore-mysql
Job {
  Name = "restore-mysql"
  Type = Restore
  Messages = "Standard"
  Storage = "Tape"
  Pool = "Tape"
  Client = "bareos-fd"
  FileSet = "Mysql"
}

The only working solution I found was setting:

  Strip Prefix = /mnt/snap/data
  Add Prefix = /srv/mysql

Also the strip_prefix=… parameter in bconsole does not appear to do
anything.

Any idea what I'm doing wrong?

Best regards
…Christoph

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To post to this group, send email to bareos-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Bug#842866: RM: libweather-com-perl -- ROM; Buggy and unsupported

2016-11-01 Thread Christoph Haas
Package: ftp.debian.org
Severity: normal

The library is no longer actively maintained. I tried to contact the
upstream developer but got no response. There are open bug reports on
CPAN that are years old which show fundamental problems with the
package and its functionality. I believe it's better to remove it from
Debian.



Accepted filepp 1.8.0-5 (source all) into unstable

2016-11-01 Thread Christoph Haas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 24 Oct 2016 23:11:38 +0200
Source: filepp
Binary: filepp
Architecture: source all
Version: 1.8.0-5
Distribution: unstable
Urgency: medium
Maintainer: Christoph Haas <h...@debian.org>
Changed-By: Christoph Haas <h...@debian.org>
Description:
 filepp - generic perl-based file pre-processor for text files
Closes: 834735
Changes:
 filepp (1.8.0-5) unstable; urgency=medium
 .
   * Making output and build reproducibe (closes: #834735)
   * Machine-readable dep5 debian/copyright added
   * debian/watch removed - no more releases planned
Checksums-Sha1:
 24295e3fcb0a580d00b4067e25a04292cc09747e 1656 filepp_1.8.0-5.dsc
 fb291a032f306ba11b2d3a627b325a81de794965 4244 filepp_1.8.0-5.debian.tar.xz
 cead0120e0c8f4a084c7c985e931d08c11796b75 61480 filepp_1.8.0-5_all.deb
Checksums-Sha256:
 40ec136c00d2e57ee0fa82c2544b360655c84f3fb26b8c1b22ecdf3baa6677fd 1656 
filepp_1.8.0-5.dsc
 ddff9ee0fe63879012a8fc092ed8d8fbe77670ad7a3430143f452d7575727154 4244 
filepp_1.8.0-5.debian.tar.xz
 57ae05104b62674ea6980499649e8ecb906280babe56396e520462b9d6505994 61480 
filepp_1.8.0-5_all.deb
Files:
 2d793de5a4f6dcd7699b0f2220ce12a7 1656 text optional filepp_1.8.0-5.dsc
 69fa300a18c5eef1f9a01a61f02b0c4d 4244 text optional 
filepp_1.8.0-5.debian.tar.xz
 2f2f7244e4307cf7e589ce2d83d93bf7 61480 text optional filepp_1.8.0-5_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJYGQcNAAoJEP4DjllQtaND7w0P/1GDdMeZLZQ4g7yaU1zMjZqj
m9hHUuFQbhd3pId12gaN4XSunuQbRC9HSmGHM2/OO3ZD0bb4ujqaaugqXQEeG/eV
2Mt0VomWvcUSKiaDMQuFVvF7fNKZki1ZJgbJeJ/hk3qLLep4D33821XkUVUVTf1H
w3a+SL+Xp7oQ/OP7ZySabIVyg3wm3rJ3BnP1Z7o+ssdcNpJ0CZRTEMf2tPACkGYQ
Ho5asrvaMSJTdy3Y8KnL6qYZsbh6goJ6q9oC+1jLmm7wW/ZH47hzSRiSEed1LAhQ
tXhO7lf2quHKjiGu83E+urw6igtmQGjhDgT+0W3AVb7OtKb0F6udl5VaTSgOpruR
EqPu9HqbndxCQ88N5zcZjLt1T6SF2d7BcM71LzIHAalwnKfWyCLC0XxY2mAc3nKB
8z1AXs3W+gU7n/cY+P2snSeya1rM6o1vuosR2eDnpIz2pIAEhgITDV70FkoK1NUG
+OMozFYadYCCxnXOwfysNRydbZ4pdJdgZrUrmLYf8dc8wfKXpXNEVsxYD4QZnach
YavJtYvkoRT/x6MtXDkNaOsFzfuTnobt/9DDLVwVMo/ENq6cduwxAplDYzMuzFnD
n7I8ZvMAC466dzhnGaFqOGOJ/QrpjHpnNIBJ2T1gd0PrrLR7ePLWIXMlusyKbb12
4VWqcn9cDgh5CRLzCA0J
=pxYQ
-END PGP SIGNATURE-



[Evolution] Can't move emails to folder using IMAP and MS Exchange 2013

2016-10-24 Thread Christoph Haas
Dear list,

I'm frustrated with Thunderbird's performance and would like to migrate
to Evolution. It works very well with Dovecot over IMAP. But at the
office we use MS Exchange 2013. IMAP generally works but I cannot move
emails between folders. I have searched different bug trackers (Gnome,
Debian, Ubuntu) but I couldn't find anything useful. So before trying to
craft a proper bug report I'd like to ask around for other users'
experience with Exchange 2013.

Whenever I try to move an email from one folder to another I get an
error message at the top reading:

---snip-
Error while moving message into folder INBOX.
Error moving messages: unexpected server response:
---snap-

I could imagine that the Exchange server is not speaking proper IMAP.
When moving messages I have just gathered the debug output of Evolution
when speaking to Dovecot (works) and Exchange (fails).

Dovecot:

[imapx:A] Got completion response for command 01477 'SELECT'
[imapx:A] camel_imapx_server_process_command_sync: 0x555a93ee1ea0 ~>
(nil); success:1 local-error:[null] result:OK status-text:'Select
completed (0.000 secs).'
[imapx:A] adding command, format = 'UID MOVE '
[imapx:A] uidset add '14402'
[imapx:A]  start
[imapx:A] adding command, format = '%d'
[imapx:A] got gint '14402'
[imapx:A] adding command, format = ' %M'
[imapx:A] completing command buffer is [25] 'UID MOVE 14402 INBOX.misc'
[imapx:A] camel_imapx_server_process_command_sync: (nil) () ~>
0x555a93ffbc60 (MOVE_MESSAGE)
[imapx:A] Starting command ( literal) A01478 UID MOVE 14402 INBOX.misc
[imapx:A] I/O: 'A01478 UID MOVE 14402 INBOX.misc'
[imapx:A] I/O: '* OK [COPYUID 1197132089 14402 3069] Moved UIDs.
* VANISHED 14402
A01478 OK [HIGHESTMODSEQ 44198] Move completed.'
[imapx:A] got untagged response
[imapx:A] Have token 'OK' id 0
[imapx:A] got untagged response
[imapx:A] Have token 'VANISHED' id 0
[imapx:A] vanished: 14402
[imapx:A] Got completion response for command 01478 'MOVE_MESSAGE'
[imapx:A] camel_imapx_server_process_command_sync: 0x555a93ffbc60 ~>
(nil); success:1 local-error:[null] result:OK status-text:'Move completed.'

Exchange:

[imapx:D] Got completion response for command 01454 'SELECT'
[imapx:D] camel_imapx_server_process_command_sync: 0x555a9480fb00 ~>
(nil); success:1 local-error:[null] result:OK status-text:'SELECT
completed.'
[imapx:D] adding command, format = 'UID MOVE '
[imapx:D] uidset add '35631'
[imapx:D]  start
[imapx:D] adding command, format = '%d'
[imapx:D] got gint '35631'
[imapx:D] adding command, format = ' %M'
[imapx:D] completing command buffer is [20] 'UID MOVE 35631 INBOX'
[imapx:D] camel_imapx_server_process_command_sync: (nil) () ~>
0x555a93e9a400 (MOVE_MESSAGE)
[imapx:D] Starting command ( literal) D01455 UID MOVE 35631 INBOX
[imapx:D] I/O: 'D01455 UID MOVE 35631 INBOX'
[imapx:D] I/O: '[COPYUID 14 35631 42359]
* 1 EXPUNGE
* 138 EXISTS
D01455 OK MOVE completed.'
[imapx:D] camel_imapx_server_process_command_sync: 0x555a93e9a400 ~>
(nil); success:0 local-error:unexpected server response: result:[null]
status-text:'[null]'
[imapx:D] Removed connection 0x555a94078160 (server:0x7eff28003310) due
to error: Error moving messages: unexpected server response:
[imapx:D] I/O: ''

So Dovecot responds with:
'* OK [COPYUID 1197132089 14402 3069] Moved UIDs.
* VANISHED 14402
A01478 OK [HIGHESTMODSEQ 44198] Move completed.'

While Exchange responds with:
'[COPYUID 14 35631 42359]
* 1 EXPUNGE
* 138 EXISTS
D01455 OK MOVE completed.'

Is Exchange doing something wrong regarding IMAP? I don't understand the
RFC well enough to tell.

I am using Evolution 3.22.1 with the evolution-data-server 3.22.1. It's
the default version on Ubuntu 16.10.

It would be terrific to learn if others have or had the same problem.
Thanks.

…Christoph


___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Bug#839649: RM: python-iplib -- ROM; Not actively developed any more

2016-10-03 Thread Christoph Haas
Package: ftp.debian.org
Severity: normal

The package does not work with Python 3 and the developer does not work
on the package any more. Besides it does not support IPv6 address
management.

There are no dependencies on this package.

As an alternative python-ipy could be used.



[Ubuntu-x-swat] [Bug 1568604] Re: Mouse cursor lost when unlocking with Intel graphics

2016-08-17 Thread Christoph Haas
Works on Lenovo X230. Also the keyboard shortcuts on XFCE work again.
Thanks for fixing the long-term annoyance.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1568604

Title:
  Mouse cursor lost when unlocking with Intel graphics

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1568604] Re: Mouse cursor lost when unlocking with Intel graphics

2016-08-17 Thread Christoph Haas
Works on Lenovo X230. Also the keyboard shortcuts on XFCE work again.
Thanks for fixing the long-term annoyance.

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

Title:
  Mouse cursor lost when unlocking with Intel graphics

Status in elementary OS:
  Fix Released
Status in xf86-video-intel:
  Confirmed
Status in xserver-xorg-video-intel package in Ubuntu:
  Fix Released
Status in xserver-xorg-video-intel source package in Xenial:
  Fix Committed
Status in xserver-xorg-video-intel package in Debian:
  Fix Released

Bug description:
  [Impact]
  Mouse cursor is no longer visible after VT-switch for systems with Intel 
graphics.

  Switching VTs again may cause the cursor to become visible again.
  - Changing to vt1 then back to vt7 (ctrl+alt+f1 then ctrl+alt+f7)

  This is often observed in systems that lock the session and return to
  the greeter (including at least Xubuntu, Ubuntu Mate, and elementary
  OS).

  [Test Case]
  (Requires a lightdm-based screen locking solution)
  1. Start a new session.
  2. Lock your screen.
  2a. You are redirected to the lightdm greeter.
  3. Login/Unlock your session.
  4. Cursor is no longer visible.

  [Regression Potential]
  remains to be seen

  ===

  [Original Report]
  Cursor is visible at unlock screen either after returning from suspend or 
just locking.

  After unlocking screen cursor is invisible.

  Changing to vt1 then back to vt7 (ctrl+alt+f1 then ctrl+alt+f7) cursor
  returns

  

  no matter if you suspend or sleep, to swap or disk when you return
  from it, the mouse cursor is missing.you can still move the mouse
  and you can see (because it highlights the window) as you move it
  around.   But the cursor is not displayed on the screen.

  i am using a lenovo W540 laptop.   I downloaded the latest beta on
  april 8 2016.

  this is xubuntu using the xfce window manager.

  the cursor does return if i log off and log back in, but that actually 
defeats the purpose of going to sleep.
  ---
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-08 (2 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160323)
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  Package: light-locker 1.7.0-2ubuntu1
  PackageArchitecture: amd64
  ProcEnviron:
   LANGUAGE=en_US
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

  _MarkForUpload: True

To manage notifications about this bug go to:
https://bugs.launchpad.net/elementaryos/+bug/1568604/+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


[Bug 1568604] Re: Mouse cursor lost when unlocking with Intel graphics

2016-08-17 Thread Christoph Haas
Works on Lenovo X230. Also the keyboard shortcuts on XFCE work again.
Thanks for fixing the long-term annoyance.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1568604

Title:
  Mouse cursor lost when unlocking with Intel graphics

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: Screenshots.debian.net leaves useless URLs in JSON output

2016-07-19 Thread Christoph Haas
Hi Andreas…

sorry for that. Apparently the web application is not aware of its
real-life URL but rather sees itself behind the caching proxy. I'll fix
that today.

The crazy thing is that get requests to
http://screenshots.debian.net/json/packages every few seconds. Actually
end-users should be even need that information. Took me a while to
figure out why the server died from the load until I started caching the
JSON files. I assume that you are importing the day just once a day, right?

Cheers
 Christoph


Am 19.07.2016 um 12:05 schrieb Andreas Tille:
> Hi,
>
> for the UDD importer I'm using
>
> http://screenshots.debian.net/json/screenshots
>
> Since some time instead of sensible URLs it leaves things like
>
> http://127.0.0.1:/screenshots/000/008/481/large.png
>
> as large_image_url.  Could you please replace all strings
>
> http://127.0.0.1:/
>
> by
>
> https://screenshots.debian.net/
>
> While I could easily do this inside the UDD importer I think it rather
> should be fixed at the source in case there might be other consumers of
> these data.
>
> Kind regards and thanks for this service
>
>Andreas.
>




signature.asc
Description: OpenPGP digital signature


[Bug 1586793] Re: owncloud network failure after suspension

2016-05-31 Thread Christoph Haas
I'm pretty sure this is the same issue as in
https://bugs.launchpad.net/ubuntu/+source/owncloud-client/+bug/1572321

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1586793

Title:
  owncloud network failure after suspension

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/owncloud-client/+bug/1586793/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Bug#616447: Removal?

2016-03-27 Thread Christoph Haas
I haven't had a sponsorship request and Michael's offer is two years old
(as is his last commit to his repository). So I'm considering to have
"fyre" removed from Debian.



signature.asc
Description: OpenPGP digital signature


Bug#616447: Removal?

2016-03-27 Thread Christoph Haas
I haven't had a sponsorship request and Michael's offer is two years old
(as is his last commit to his repository). So I'm considering to have
"fyre" removed from Debian.



signature.asc
Description: OpenPGP digital signature


Bug#819366: RFA: filepp -- generic perl-based file pre-processor for text files

2016-03-27 Thread Christoph Haas
Package: wnpp
Severity:normal

The package needs minor fixes. I'm willing to sponsor uploads if
required. There have not been any updates of the upstream software in years.

Only 15 people have reportedly installed the package. So if nobody is
willing to adopt this package I will consider having it removed from Debian.



signature.asc
Description: OpenPGP digital signature


Bug#819366: RFA: filepp -- generic perl-based file pre-processor for text files

2016-03-27 Thread Christoph Haas
Package: wnpp
Severity:normal

The package needs minor fixes. I'm willing to sponsor uploads if
required. There have not been any updates of the upstream software in years.

Only 15 people have reportedly installed the package. So if nobody is
willing to adopt this package I will consider having it removed from Debian.



signature.asc
Description: OpenPGP digital signature


Re: [xwiki-users] Page tree stopped working on Main wiki

2016-01-18 Thread Christoph Haas
Any further ideas?

Am 13.01.2016 um 11:27 schrieb Marius Dumitru Florea:
> Can you try the same with XWiki.DocumentTree page? (it includes
> XWiki.DocumentTreeMacros and I thought PR is checked on the included
> content).

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Page tree stopped working on Main wiki

2016-01-13 Thread Christoph Haas
Am 13.01.2016 um 11:27 schrieb Marius Dumitru Florea:
> Can you try the same with XWiki.DocumentTree page? (it includes
> XWiki.DocumentTreeMacros and I thought PR is checked on the included
> content).
Done that. Did not resolve it. However on the "DocumentTree" page I find
that these work on the top level:

  * Wiki > Space > Page Tree ({{documentTree showWikis="true"
showSpaces="true" showTranslations="false" showAttachments="false"
showChildDocuments="false" /}})
  * Full Entity Tree ({{documentTree showWikis="true"
showWikiPrettyName="false" showSpaces="true" showDocumentTitle="false"
showChildDocuments="false" showObjects="true"
showClassProperties="true" /}})

…while these show the reported problem…

  * Document Hierarchy Tree ({{documentTree compact="true" /}})
  * Compact Document Hierarchy Tree ({{documentTree /}})

So the tree widget is not generally broken - just when it dives into the
pages of the wiki. I must say that we have migrated from a previous
version that had "spaces" and not just nested documents. Not sure that
information helps.

I have posted the current traceback at
https://gist.github.com/Signum/e1a8a3732b26c30400e2 in case something
has changed indeed but I didn't see it.

Thanks again for the help. I hope we can figure this out.

…Christoph

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Page tree stopped working on Main wiki

2016-01-12 Thread Christoph Haas
Am 07.01.2016 um 21:08 schrieb Rodrigo Borges Pereira:
> I updated from 7.4RC1 to 7.4 (Debian packages, Tomcat7, MySQL). When I
> click the navigation arrows in the Main wiki, they come up empty. If I
> create a new wiki, it works fine.
I have the same issue. Caches are cleared. The application server log reads:

2016-01-12 10:11:45,237
[http://localhost:8080/xwiki/wiki/it/get/XWiki/DocumentTree?outputSyntax=plain&=children=document%3Ait%3ADevelopment.WebHome]
ERROR o.x.v.i.DefaultVelocityEngine  - Exception in macro
#addNestedChildDocuments called at 119:it:XWiki.DocumentTree[line 438,
column 1]
2016-01-12 10:11:45,237
[http://localhost:8080/xwiki/wiki/it/get/XWiki/DocumentTree?outputSyntax=plain&=children=document%3Ait%3ADevelopment.WebHome]
ERROR o.x.v.i.DefaultVelocityEngine  - Exception in macro
#addChildDocuments called at 119:it:XWiki.DocumentTree[line 624, column 1]
2016-01-12 10:11:45,237
[http://localhost:8080/xwiki/wiki/it/get/XWiki/DocumentTree?outputSyntax=plain&=children=document%3Ait%3ADevelopment.WebHome]
ERROR o.x.v.i.DefaultVelocityEngine  - Exception in macro
#addDocumentChildren called at 119:it:XWiki.DocumentTree[line 1, column 1]
2016-01-12 10:11:45,237
[http://localhost:8080/xwiki/wiki/it/get/XWiki/DocumentTree?outputSyntax=plain&=children=document%3Ait%3ADevelopment.WebHome]
ERROR o.x.v.i.DefaultVelocityEngine  - Exception in macro #getChildren
called at 119:it:XWiki.DocumentTree[line 37, column 1]
2016-01-12 10:11:45,237
[http://localhost:8080/xwiki/wiki/it/get/XWiki/DocumentTree?outputSyntax=plain&=children=document%3Ait%3ADevelopment.WebHome]
ERROR o.x.v.i.DefaultVelocityEngine  - Exception in macro
#handleDocumentTreeRequest called at 119:it:XWiki.DocumentTree[line 3,
column 1]

The links in the document tree work but you can't expand a section. :(

…Christoph


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Page tree stopped working on Main wiki

2016-01-12 Thread Christoph Haas
Am 12.01.2016 um 13:04 schrieb Marius Dumitru Florea:
> Can you try saving the page XWiki.DocumentTreeMacros with an user that has
> Programming Rights?
I'm logged in as "administrator" who has that special permission and
went to …xwiki/bin/view/XWiki/DocumentTreeMacros, edited and saved the
page. Is that what I was supposed to try? Unfortunately that hasn't
changed anything. I still get:

Caused by: org.xwiki.query.QueryException: The query requires
programming right.

…Christoph

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Page tree stopped working on Main wiki

2016-01-12 Thread Christoph Haas
Am 12.01.2016 um 10:29 schrieb Marius Dumitru Florea:
> If you access these URLs directly you should be getting some long
> stacktrace that has more details about the root problem. Can you copy the
> stacktrace and put it on a pasting website.
Sure.

Failed to execute the [velocity] macro. Click on this message for
details.org.xwiki.rendering.macro.MacroExecutionException: Failed to
evaluate Velocity Macro for content [#if ($xcontext.action == 'get')
  #updateDocTreeConfigFromRequest
  #handleDocumentTreeRequest
#end]
at
org.xwiki.rendering.internal.macro.velocity.VelocityMacro.evaluateString(VelocityMacro.java:131)
at
org.xwiki.rendering.internal.macro.velocity.VelocityMacro.evaluateString(VelocityMacro.java:50)
at
org.xwiki.rendering.macro.script.AbstractScriptMacro.evaluateBlock(AbstractScriptMacro.java:286)
at
org.xwiki.rendering.macro.script.AbstractScriptMacro.execute(AbstractScriptMacro.java:182)
at
org.xwiki.rendering.macro.script.AbstractScriptMacro.execute(AbstractScriptMacro.java:58)
at
org.xwiki.rendering.internal.transformation.macro.MacroTransformation.transform(MacroTransformation.java:269)
at
org.xwiki.rendering.internal.transformation.DefaultRenderingContext.transformInContext(DefaultRenderingContext.java:183)
at
org.xwiki.rendering.internal.transformation.DefaultTransformationManager.performTransformations(DefaultTransformationManager.java:95)
at
org.xwiki.display.internal.DocumentContentDisplayer.display(DocumentContentDisplayer.java:253)
at
org.xwiki.display.internal.DocumentContentDisplayer.display(DocumentContentDisplayer.java:126)
at
org.xwiki.display.internal.DocumentContentDisplayer.display(DocumentContentDisplayer.java:56)
at
org.xwiki.display.internal.DefaultDocumentDisplayer.display(DefaultDocumentDisplayer.java:96)
at
org.xwiki.display.internal.DefaultDocumentDisplayer.display(DefaultDocumentDisplayer.java:39)
at
org.xwiki.sheet.internal.SheetDocumentDisplayer.display(SheetDocumentDisplayer.java:113)
at
org.xwiki.sheet.internal.SheetDocumentDisplayer.display(SheetDocumentDisplayer.java:50)
at
org.xwiki.display.internal.ConfiguredDocumentDisplayer.display(ConfiguredDocumentDisplayer.java:68)
at
org.xwiki.display.internal.ConfiguredDocumentDisplayer.display(ConfiguredDocumentDisplayer.java:42)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:1164)
at
com.xpn.xwiki.doc.XWikiDocument.getRenderedContent(XWikiDocument.java:1127)
at com.xpn.xwiki.api.Document.getRenderedContent(Document.java:749)
at sun.reflect.GeneratedMethodAccessor670.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInvoke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:173)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.value(ASTReference.java:567)
at
org.apache.velocity.runtime.parser.node.ASTExpression.value(ASTExpression.java:71)
at
org.apache.velocity.runtime.parser.node.ASTSetDirective.render(ASTSetDirective.java:142)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfStatement.java:87)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72)
at
org.xwiki.velocity.introspection.TryCatchDirective.render(TryCatchDirective.java:72)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluateInternal(DefaultVelocityEngine.java:256)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:222)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVelocityEngine.java:198)
at
com.xpn.xwiki.internal.template.InternalTemplateManager.evaluateContent(InternalTemplateManager.java:725)
at
com.xpn.xwiki.internal.template.InternalTemplateManager.render(InternalTemplateManager.java:626)
at
com.xpn.xwiki.internal.template.InternalTemplateManager.renderFromSkin(InternalTemplateManager.java:604)
at
com.xpn.xwiki.internal.template.InternalTemplateManager.renderFromSkin(InternalTemplateManager.java:570)
at
com.xpn.xwiki.internal.template.InternalTemplateManager.render(InternalTemplateManager.java:556)
at

Re: [xwiki-users] Page tree stopped working on Main wiki

2016-01-12 Thread Christoph Haas
Am 12.01.2016 um 16:39 schrieb vinc...@massol.net:
> On 12 Jan 2016 at 14:27:50, Christoph Haas 
> (em...@christoph-haas.de(mailto:em...@christoph-haas.de)) wrote:
>> Am 12.01.2016 um 13:04 schrieb Marius Dumitru Florea:
>>> Can you try saving the page XWiki.DocumentTreeMacros with an user that has
>>> Programming Rights?
>> I'm logged in as "administrator" who has that special permission and
>> went to …xwiki/bin/view/XWiki/DocumentTreeMacros, edited and saved the
>> page. Is that what I was supposed to try? Unfortunately that hasn't
>> changed anything. I still get:
>>  
>> Caused by: org.xwiki.query.QueryException: The query requires
>> programming right.
> Note that you need to change the content of the page as otherwise the content 
> author won’t be changed (yes I know, PITA…).
Good idea. Just did that. And the history even shows that the page was
changed by the administrator a minute ago. Cleared the cache again. Even
restarted the Jetty application server. But to no avail.

…Christoph


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Handing over python-iplib

2015-06-13 Thread Christoph Haas

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear list…

I'd like to pass maintenance of the python-iplib package to the python
module team. Would anyone like to put their name onto it? Otherwise I'd
keep my name there as maintainer or uploader. I'd prefer though if the
team is the official maintainer.

(Reason: currently my todo list is unbearable and although the package
is simple I'd like to hand it over. Let me know.)

Please keep me CC'ed because I'm not subscribed to the list. Thanks.

Cheers
 Christoph
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlV8bWQACgkQCV53xXnMZYYoAACffeFfrRkQhn4oVTHy0sLpsn0r
T4QAn2lLj2D79GFuEFJBrH046NKxp8Qq
=tHoO
-END PGP SIGNATURE-



--
To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/557c6d67.1090...@debian.org



[Bug 1446746] Re: git not showing commit summary on 15.04

2015-04-25 Thread Christoph Haas
Strange enough - I took the most recent source package, built it,
installed it and now gitg works.

What I did to get it working:

dget -ux 
http://archive.ubuntu.com/ubuntu/pool/universe/g/gitg/gitg_3.15.1-0ubuntu2.dsc
cd gitg-3.15.1/
sudo apt-get build-dep gitg
debuild -uc -us
cd ..
sudo dpkg -i gitg_3.15.1-0ubuntu2_amd64.deb
gitg

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1446746

Title:
  git not showing commit summary on 15.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1446746] Re: git not showing commit summary on 15.04

2015-04-25 Thread Christoph Haas
Sory, no. I just updated to Xubuntu 15.04 and that's when gitg showed
this bug. All was fine with the 14.10 version.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1446746

Title:
  git not showing commit summary on 15.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1446746] Re: git not showing commit summary on 15.04

2015-04-25 Thread Christoph Haas
Thanks for the quick response. Those library packages are not installed
here:

chaas@aldi:~$ LANG=C sudo apt-get remove libgit2-lib libgit2-glib
Reading package lists... Done
Building dependency tree   
Reading state information... Done
E: Unable to locate package libgit2-lib
E: Unable to locate package libgit2-glib

Version 3.15.1-0ubuntu2 of gitg is installed. There are no pending
updates.

The error message I get is similar to the OP's:

** (gitg:28040): WARNING **: gitg-plugins-engine.vala:40: Could not load
repository: Typelib file for namespace 'Peas', version '1.0' not found

I also purged gitg and ran apt-get autoremove and reinstalled gitg.
Same effect.

ldd says:

chaas@aldi:~/projekte/debshots2.ror4$ ldd /usr/bin/gitg | grep git
libgit2-glib-1.0.so.0 = 
/usr/lib/x86_64-linux-gnu/libgit2-glib-1.0.so.0 (0x7f2bf9f64000)
libgitg-1.0.so.0 = /usr/lib/gitg/libgitg-1.0.so.0 (0x7f2bf7549000)
libgitg-ext-1.0.so.0 = /usr/lib/gitg/libgitg-ext-1.0.so.0 
(0x7f2bf7336000)
libgit2.so.22 = /usr/lib/x86_64-linux-gnu/libgit2.so.22 
(0x7f2bf677f000)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1446746

Title:
  git not showing commit summary on 15.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[ansible-project] Debugging modules

2015-04-17 Thread Christoph Haas
Hi…

it assume that the mysql_user module is slightly buggy because it claims
changed=1 after a privileges change although nothing was changed. But
I don't just like to complain but instead debug the module and see if I
can provide a fix. So far I have git-clone'd
g...@github.com:ansible/ansible.git (recursively) and set

export
ANSIBLE_LIBRARY=/home/chaas/tmp/ansible/lib/ansible/modules/core/database/mysql/

I have copied the mysql_user.py to mysql_user2.py and started debugging.
However I wonder how I can debug the module. pdb didn't work as
expected. And neither STDOUT nor STDERR can be used. I even tried to
write to a /tmp/debug file but somehow even that didn't show anything.

So I wonder how developers actually debug their code. Hints welcome.

Thanks
…Christoph


-- 
You received this message because you are subscribed to the Google Groups 
Ansible Project group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/55312B99.6010704%40christoph-haas.de.
For more options, visit https://groups.google.com/d/optout.


Re: [bareos-users] Recycling volumes of cancelled jobs

2015-02-03 Thread Christoph Haas
Am 03.02.2015 um 16:01 schrieb Philipp Storz:
 Am 03.02.2015 um 15:16 schrieb Christoph Haas:
 Am 03.02.2015 um 14:45 schrieb Philipp Storz:
 Am 02.02.2015 um 14:45 schrieb Christoph Haas:
 Dear list,

 I've been using Bacula for a while a few years ago so I have some
 experience with the system. But there's one issue I never managed to
 solve properly. So I'd be glad if you have a hint for me. How do I
 recycle volumes that belong to a job that has been cancelled?
 use

 purge volume=volname
 What if the volume has been used for other jobs? And am I supposed to
 get the list of volumes manually and do that for 100 volumes manually?
 Can't believe that.

 I'm rather looking for a way to tell Bareos to recycle volumes that do
 not belong to any valid job any more.
 You do not have to do that, bareos does this automatically.
 That is how the retention logic works.

 You might be looking for

 delete JobId=job-id

 to remove your job from the database.
Thanks. I believe I tried that. The job was removed. But although one
full backup was 600 GB I had more than 1 TB of media/volumes on my disk.
And the media was marked Full. Doesn't it appear differently once it's
recycled? Or would Bareos in fact consider these volumes writeable again?

…Christoph


-- 
You received this message because you are subscribed to the Google Groups 
bareos-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bareos-users+unsubscr...@googlegroups.com.
To post to this group, send email to bareos-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Bug 1402381] [NEW] Duplicate option -k

2014-12-14 Thread Christoph Haas
Public bug reported:

According to the man page the -k option is used both for

   --kill-long-queries, -k
  Kill long running queries instead of aborting the dump

and

   --no-locks, -k
  Do not execute the temporary shared read lock.

but mydumper only recognizes it as --no-locks.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402381

Title:
  Duplicate option -k

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1381388] Re: no data since days...

2014-10-15 Thread Christoph Haas
Fixes it for me, too.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1381388

Title:
  no data since days...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-weather-plugin/+bug/1381388/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Bug#761505: ddclient: Using /etc/init.d/ddclient restart makes ddclient run multiple instances

2014-09-15 Thread Christoph Haas

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am 15.09.2014 um 23:02 schrieb Torsten Landschoff:
 Hi Christoph,

 On 09/14/2014 02:37 PM, Christoph Haas wrote:
 apparently when restarting ddclient after a configuration change
 using /etc/init.d/ddclient restart the old process is not killed.
 Good report, thanks. I think this is a duplicate of the bug here:

 https://bugs.debian.org/652298

 If you agree I would merge the two bugs. The problem was fixed for
 Debian unstable leading up to the jessie release.
Sorry - I must have overlooked that bug report. Yes, please merge it.
Thanks.

Kindly
…Christoph

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQXWAoACgkQCV53xXnMZYZC4ACgvBmvO6qVJNvniz/nV04sW4/B
9YYAoIV2UcVfYc84NiwH0umARMSsCMOk
=iESn
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#761505: ddclient: Using /etc/init.d/ddclient restart makes ddclient run multiple instances

2014-09-14 Thread Christoph Haas
Package: ddclient
Version: 3.8.0-11.5
Severity: normal

Dear Maintainer,

apparently when restarting ddclient after a configuration change
using /etc/init.d/ddclient restart the old process is not killed.

Example:

root@torf:/etc/shorewall# ps ax | grep ddclient - sleeping
 8700 pts/1S  0:00 ddclient - sleeping for 50 seconds
root@torf:/etc/shorewall# /etc/init.d/ddclient restart  
[ ok ] Restarting Dynamic DNS service update utility: ddclient.
root@torf:/etc/shorewall# ps ax | grep ddclient - sleeping
 8700 pts/1S  0:00 ddclient - sleeping for 40 seconds
 9182 pts/1S  0:00 ddclient - sleeping for 60 seconds
root@torf:/etc/shorewall# /etc/init.d/ddclient restart  
[ ok ] Restarting Dynamic DNS service update utility: ddclient.
root@torf:/etc/shorewall# ps ax | grep ddclient - sleeping
 8700 pts/1S  0:00 ddclient - sleeping for 40 seconds
 9182 pts/1S  0:00 ddclient - sleeping for 60 seconds
 9217 pts/1S  0:00 ddclient - sleeping for 60 seconds

My /etc/default/ddclient file:

run_ipup=true
run_daemon=true
daemon_interval=60

My /etc/ddclient.conf file:

# For OpenDNS
use=web, web=myip.dnsomatic.com
ssl=yes
server=updates.opendns.com
protocol=dyndns2
login=...
password=...
...




-- System Information:
Debian Release: 7.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ddclient depends on:
ii  debconf [debconf-2.0]  1.5.49
ii  initscripts2.88dsf-41+deb7u1
ii  lsb-base   4.1+Debian8+deb7u1
ii  perl [perl5]   5.14.2-21+deb7u1

Versions of packages ddclient recommends:
ii  libio-socket-ssl-perl  1.76-2

ddclient suggests no packages.

-- debconf information excluded


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



[Bug 1313728] Re: Background color reset to #7f0000

2014-08-27 Thread Christoph Haas
Strange enough. On an up-to-date Ubuntu 14.04 I can't reproduce the
original issue any more. What the...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1313728

Title:
  Background color reset to #7f

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1354335] [NEW] gsm-utils daemon cannot start due to init.d bug

2014-08-08 Thread Christoph Haas
Public bug reported:

The gsm-utils daemon in Ubuntu 12.04 (precise) can't be started du to a
problem in the order of commands in the init.d script.

This patch will fix it:

23,26d22
 if [ $RUNGSMSMS != yes ];then
 echo GSM SMS deamon not yet configured. Edit /etc/default/gsm-utils 
first.
 exit 0
 fi
37a34,38
 
 if [ $RUNGSMSMS != yes ];then
 echo GSM SMS deamon not yet configured. Edit /etc/default/gsm-utils 
 first.
 exit 0
 fi

The cause of the problem is that

   $RUNGSMSMS != yes

is checked before the actual /etc/default/gsm-utils file is sourced
using

   test -r /etc/default/gsm-utils  . /etc/default/gsm-utils  # for
overwriting some parameters

This is easy to fix but basically renders the daemon process unusuable.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: gsm-utils (not installed)
Uname: Linux 3.15.3-031503-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.3
Architecture: amd64
CurrentDesktop: XFCE
Date: Fri Aug  8 10:35:44 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2014-07-01 (37 days ago)
InstallationMedia: Xubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140416.2)
SourcePackage: gsmlib
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 precise

** Tags removed: apport-bug trusty
** Tags added: precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1354335

Title:
  gsm-utils daemon cannot start due to init.d bug

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1354335] Re: gsm-utils daemon cannot start due to init.d bug

2014-08-08 Thread Christoph Haas
Ignore the ProcEnviron.txt please. I created the bug report from my
laptop but it affects an Ubuntu 12.04 LTS server.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1354335

Title:
  gsm-utils daemon cannot start due to init.d bug

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Ubuntu-x-swat] [Bug 1283938] Re: Ubuntu 14.04 blank screen after wakeup from sleep

2014-05-04 Thread Christoph Haas
@Patrick C
Right, I'm using Mint 16 XFCE which is based on Ubuntu 13.10 AFAIK.
(I don't have much experience with Mint either. I just needed a usable 
distribution on my laptop quickly and didn't have time to try much.)

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1283938

Title:
  Ubuntu 14.04 blank screen after wakeup from sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-trusty/+bug/1283938/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1283938] Re: Ubuntu 14.04 blank screen after wakeup from sleep

2014-05-04 Thread Christoph Haas
@Patrick C
Right, I'm using Mint 16 XFCE which is based on Ubuntu 13.10 AFAIK.
(I don't have much experience with Mint either. I just needed a usable 
distribution on my laptop quickly and didn't have time to try much.)

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

Title:
  Ubuntu 14.04 blank screen after wakeup from sleep

Status in “linux-lts-trusty” package in Ubuntu:
  Confirmed
Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  Confirmed
Status in “xserver-xorg-video-ati” package in Ubuntu:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Confirmed

Bug description:
  Hardware: Samsung Serie 5 AMD notebook (find in attachment the hardware 
profile).
  OS: Ubuntu 14.04 (updated today).

  After wakeup the notebook from the sleep mode, the screen goes blank while 
the OS and the hardware is awake.
  (I can also press Ctrl+F1 and Ctrl+Alt+Del to reboot the system).

  This problem is not happening with the AMD property drivers (but they
  have another bug, i can't set up the brighness of the monitor).

  The problem in my opinion is related to this package:  xserver-xorg-
  video-ati.

  Changing quiet splash with nomodeset into /etc/default/grub makes
  the wakeup working, but the pc is really slow (can't be used), also
  after the normal start up.

  
  Best regards and have a good work.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xserver-xorg-video-ati 1:7.3.0-1ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-11.31-generic 3.13.3
  Uname: Linux 3.13.0-11-generic x86_64
  .tmp.unity.support.test.0:

  ApportVersion: 2.13.2-0ubuntu5
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Mon Feb 24 12:58:07 2014
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus: virtualbox, 4.3.6, 3.13.0-11-generic, x86_64: installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7500G] [1002:990a] 
(prog-if 00 [VGA controller])
     Subsystem: Samsung Electronics Co Ltd Device [144d:c660]
   Advanced Micro Devices, Inc. [AMD/ATI] Thames [Radeon HD 7550M/7570M/7650M] 
[1002:6841] (rev ff) (prog-if ff)
  InstallationDate: Installed on 2014-02-22 (1 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140218)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 535U4C
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-11-generic 
root=UUID=9f8c7e92-a6ea-41fd-9489-a256c8b9f5d5 ro quiet splash vt.handoff=7
  SourcePackage: xserver-xorg-video-ati
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/03/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P06RAF.N93.130403.LEO
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NP535U4X-S01TH
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SEC_SW_REVISION_1234567890ABCD
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP06RAF.N93.130403.LEO:bd04/03/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn535U4C:pvrP06RAF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNP535U4X-S01TH:rvrSEC_SW_REVISION_1234567890ABCD:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvrN/A:
  dmi.product.name: 535U4C
  dmi.product.version: P06RAF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.
  version.compiz: compiz 1:0.9.11+14.04.20140218-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0~rc1-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0~rc1-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.0-1ubuntu6
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Mon Feb 24 12:54:54 2014
  xserver.configfile: default
  xserver.errors: RADEON(G0): [XvMC] Failed to initialize extension.
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.15.0-1ubuntu6
  xserver.video_driver: radeon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-trusty/+bug/1283938/+subscriptions

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

[Bug 1283938] Re: Ubuntu 14.04 blank screen after wakeup from sleep

2014-05-04 Thread Christoph Haas
@Patrick C
Right, I'm using Mint 16 XFCE which is based on Ubuntu 13.10 AFAIK.
(I don't have much experience with Mint either. I just needed a usable 
distribution on my laptop quickly and didn't have time to try much.)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1283938

Title:
  Ubuntu 14.04 blank screen after wakeup from sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-trusty/+bug/1283938/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1315900] [NEW] Suggest for libqt4-sql-psql

2014-05-04 Thread Christoph Haas
Public bug reported:

I would appreciate if you could suggest to install the libqt4-sql-psql
package. I'm using PostgreSQL but only MySQL was offered as a connection
until I installed that package.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: tora 2.1.3-2build2
ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
Uname: Linux 3.11.0-14-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
CurrentDesktop: XFCE
Date: Sun May  4 18:00:14 2014
InstallationDate: Installed on 2013-12-11 (143 days ago)
InstallationMedia: Xubuntu 13.10 Saucy Salamander - Release amd64 (20131016)
SourcePackage: tora
UpgradeStatus: Upgraded to trusty on 2014-04-18 (16 days ago)

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


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1315900

Title:
  Suggest for libqt4-sql-psql

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Ubuntu-x-swat] [Bug 1283938] Re: Ubuntu 14.04 blank screen after wakeup from sleep

2014-05-03 Thread Christoph Haas
@Patrick C
You say that with a recent Linux Mint you also see the problem.
I'd like to note that I have switched from Xubuntu to Linux Mint XFCE recently 
and have *NOT* had a single standby/resume problem since. (This bug is so 
serious that Xubuntu 14.04 was no longer an option for serious work on my work 
laptop.)

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1283938

Title:
  Ubuntu 14.04 blank screen after wakeup from sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-trusty/+bug/1283938/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1283938] Re: Ubuntu 14.04 blank screen after wakeup from sleep

2014-05-03 Thread Christoph Haas
@Patrick C
You say that with a recent Linux Mint you also see the problem.
I'd like to note that I have switched from Xubuntu to Linux Mint XFCE recently 
and have *NOT* had a single standby/resume problem since. (This bug is so 
serious that Xubuntu 14.04 was no longer an option for serious work on my work 
laptop.)

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

Title:
  Ubuntu 14.04 blank screen after wakeup from sleep

Status in “linux-lts-trusty” package in Ubuntu:
  Confirmed
Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  Confirmed
Status in “xserver-xorg-video-ati” package in Ubuntu:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Confirmed

Bug description:
  Hardware: Samsung Serie 5 AMD notebook (find in attachment the hardware 
profile).
  OS: Ubuntu 14.04 (updated today).

  After wakeup the notebook from the sleep mode, the screen goes blank while 
the OS and the hardware is awake.
  (I can also press Ctrl+F1 and Ctrl+Alt+Del to reboot the system).

  This problem is not happening with the AMD property drivers (but they
  have another bug, i can't set up the brighness of the monitor).

  The problem in my opinion is related to this package:  xserver-xorg-
  video-ati.

  Changing quiet splash with nomodeset into /etc/default/grub makes
  the wakeup working, but the pc is really slow (can't be used), also
  after the normal start up.

  
  Best regards and have a good work.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xserver-xorg-video-ati 1:7.3.0-1ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-11.31-generic 3.13.3
  Uname: Linux 3.13.0-11-generic x86_64
  .tmp.unity.support.test.0:

  ApportVersion: 2.13.2-0ubuntu5
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Mon Feb 24 12:58:07 2014
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus: virtualbox, 4.3.6, 3.13.0-11-generic, x86_64: installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7500G] [1002:990a] 
(prog-if 00 [VGA controller])
     Subsystem: Samsung Electronics Co Ltd Device [144d:c660]
   Advanced Micro Devices, Inc. [AMD/ATI] Thames [Radeon HD 7550M/7570M/7650M] 
[1002:6841] (rev ff) (prog-if ff)
  InstallationDate: Installed on 2014-02-22 (1 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140218)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 535U4C
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-11-generic 
root=UUID=9f8c7e92-a6ea-41fd-9489-a256c8b9f5d5 ro quiet splash vt.handoff=7
  SourcePackage: xserver-xorg-video-ati
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/03/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P06RAF.N93.130403.LEO
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: NP535U4X-S01TH
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: SEC_SW_REVISION_1234567890ABCD
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP06RAF.N93.130403.LEO:bd04/03/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn535U4C:pvrP06RAF:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNP535U4X-S01TH:rvrSEC_SW_REVISION_1234567890ABCD:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvrN/A:
  dmi.product.name: 535U4C
  dmi.product.version: P06RAF
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.
  version.compiz: compiz 1:0.9.11+14.04.20140218-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0~rc1-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0~rc1-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.0-1ubuntu6
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Mon Feb 24 12:54:54 2014
  xserver.configfile: default
  xserver.errors: RADEON(G0): [XvMC] Failed to initialize extension.
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.15.0-1ubuntu6
  xserver.video_driver: radeon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-trusty/+bug/1283938/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : 

[Bug 1283938] Re: Ubuntu 14.04 blank screen after wakeup from sleep

2014-05-03 Thread Christoph Haas
@Patrick C
You say that with a recent Linux Mint you also see the problem.
I'd like to note that I have switched from Xubuntu to Linux Mint XFCE recently 
and have *NOT* had a single standby/resume problem since. (This bug is so 
serious that Xubuntu 14.04 was no longer an option for serious work on my work 
laptop.)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1283938

Title:
  Ubuntu 14.04 blank screen after wakeup from sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-trusty/+bug/1283938/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313728] [NEW] Background color reset to #7f0000

2014-04-28 Thread Christoph Haas
Public bug reported:

It was said in
https://bugs.launchpad.net/ubuntu/+source/xfdesktop4/+bug/1271871 to
open a new bug report if the problem still persists. Yes, it does. I'm
on Xubuntu 14.04 stable (all updates installed) and whenever I start the
Desktop Settings my background color gets reset to #7f.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xfdesktop4 4.11.6-1ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
CurrentDesktop: XFCE
Date: Mon Apr 28 15:26:17 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2013-12-11 (137 days ago)
InstallationMedia: Xubuntu 13.10 Saucy Salamander - Release amd64 (20131016)
SourcePackage: xfdesktop4
UpgradeStatus: Upgraded to trusty on 2014-04-26 (1 days ago)

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


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1313728

Title:
  Background color reset to #7f

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: SSL for screenshots.debian.net?

2014-02-12 Thread Christoph Haas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am 11.02.2014 11:37, schrieb Julien Cristau:
 On Tue, Feb 11, 2014 at 10:38:39 +0100, Peter Palfrader wrote:
 
 On Tue, 11 Feb 2014, Christoph Haas wrote:
 
 Regarding the certificate: does Debian have resources to buy an
 SSL certificate? I usually use a free StartCom certificate for
 my own purposes but I am not sure whether it is suitable for
 such use. I don't think that the sponsor will donate an SSL
 certificate either but I'm willing to ask.
 
 jcristau recently got a cert for france.debian.net from gandi,
 using the put a file on the webserver method of authentication.
 Gandi certs are around 12 Euros a year.
 
 startcom requires control of the top level (debian.net) so that
 didn't work.  So I went with gandi, and got a 1-year certificate
 for 14.40€.

Done. I have bought a Gandi certificate and set up
screenshots.debian.net via HTTPS. Looks like I'm using relative URLs
everywhere so the site should work well. Feel free to try changing the
URL in packages.debian.org to HTTPS. I'm curious about the effect of
the encryption on the CPU load.

Cheers
 Christoph

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iEYEARECAAYFAlL7mE8ACgkQCV53xXnMZYZmMwCfe7zmGqG6DbmwXo+1YH87jIOr
UG0An0eYVQGh34AZKTx2OI29xK9Pbhsn
=y1Xv
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52fb9852.40...@debian.org



Re: SSL for screenshots.debian.net?

2014-02-12 Thread Christoph Haas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Quick note… I have tried to…

Redirect permanent / https://screenshots.debian.net/

But it only took 10 seconds and my (virtual) server started to respond
unbearably slowly. The system load seemed okay (0.8 with 2 CPUs) but
the response time was ~10 seconds per HTTPS request. I'm not yet sure
what the problem is because KeepAlive on Apache level is on and there
are enough sockets available according to apache2ctl fullstatus
shows enough enough open slots.

So I'll leave HTTPS on but I can't currently redirect everyone to use
HTTPS. Ideas welcome.

…Christoph

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iEYEARECAAYFAlL7n4MACgkQCV53xXnMZYYUxgCfbjINjFtOQy0jKdqXRuoLwEdF
2/8Anj06IxQqqkh/mAP3ThFlH3IQ3w+m
=yp5z
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52fb9f83.5090...@debian.org



Re: SSL for screenshots.debian.net?

2014-02-12 Thread Christoph Haas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Some raw data…

$ while true ; do cat /proc/sys/kernel/random/entropy_avail ; sleep 1;
done
129
153
134
180
183
174
174
134
192
175
179
188
135
183


$ time curl https://screenshots.debian.net/ /dev/null
real0m11.148s
user0m0.016s
sys 0m0.012s


$ apache2ctl status
Apache Server Status for localhost

Server Version: Apache/2.2.16 (Debian) mod_ssl/2.2.16 OpenSSL/0.9.8o
mod_wsgi/
3.3 Python/2.6.6
Server Built: Mar 3 2013 12:12:28

-
---

Current Time: Wednesday, 12-Feb-2014 13:08:31 EST
Restart Time: Wednesday, 12-Feb-2014 13:07:18 EST
Parent Server Generation: 10
Server uptime: 1 minute 12 seconds
Total accesses: 3461 - Total Traffic: 44.9 MB
CPU Usage: u26.13 s2.46 cu0 cs0 - 39.7% CPU load
48.1 requests/sec - 0.6 MB/second - 13.3 kB/request
149 requests currently being processed, 1 idle workers

RRWRCRKKKRWKKKWWK...
CKRRKKCRCKWCK...
CKKKWRKKCCRWKRCKK...
CKCKKCRKCKKKRKKWWKWRK...
_KWKKCKWRRRWWKWKK...
KKCWKWKRKWKRKWKCKCWRKRKWK...











Scoreboard Key:
_ Waiting for Connection, S Starting up, R Reading Request,
W Sending Reply, K Keepalive (read), D DNS Lookup,
C Closing connection, L Logging, G Gracefully finishing,
I Idle cleanup of worker, . Open slot with no current process


The server sponsor from Vexxhost reacted very quickly though and has
offered a faster server. So I will deploy the application there and
try HTTPS globally again.

I may also try to put an nginx in front. Somehow I have a bad feeling
with mod_wsgi and Apache-mpm-worker.

…Christoph


On 12.02.2014 18:51, Martin Zobel-Helas wrote:
 Hi,
 
 cat /proc/sys/kernel/random/entropy_avail ?
 
 On Wed Feb 12, 2014 at 17:21:23 +0100, Christoph Haas wrote:
 Quick note… I have tried to…
 
 Redirect permanent / https://screenshots.debian.net/
 
 But it only took 10 seconds and my (virtual) server started to
 respond unbearably slowly. The system load seemed okay (0.8 with
 2 CPUs) but the response time was ~10 seconds per HTTPS request.
 I'm not yet sure what the problem is because KeepAlive on Apache
 level is on and there are enough sockets available according to
 apache2ctl fullstatus shows enough enough open slots.
 
 So I'll leave HTTPS on but I can't currently redirect everyone to
 use HTTPS. Ideas welcome.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iEYEARECAAYFAlL7uh4ACgkQCV53xXnMZYYfpgCgpedpVMdRESKUyzhjBf9PbVTt
fMwAoK83RsX0ozn++LqO7m+MxJK40iP9
=cKNt
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52fbba21.2090...@debian.org



Re: SSL for screenshots.debian.net?

2014-02-12 Thread Christoph Haas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 12.02.2014 19:26, Martin Zobel-Helas wrote: On Wed Feb 12, 2014 at
18:18:17 +, Luca Filipozzi wrote:
 Do you have haveged installed?
 
 On Wed, Feb 12, 2014 at 07:14:57PM +0100, Christoph Haas wrote:
 -BEGIN PGP SIGNED MESSAGE- The server sponsor from
 Vexxhost reacted very quickly though and has offered a faster
 server. So I will deploy the application there and try HTTPS
 globally again.
 
 I may also try to put an nginx in front. Somehow I have a bad
 feeling with mod_wsgi and Apache-mpm-worker.
 
 How about moving the installation to DSA maintained hardware?

What would that mean? I'm trying to be honest here. I like adding
features every now and then and would like to be able to try them out
without requesting anyone to do anything. From my understanding DDs do
not have access to DSA-maintained hardware. As much as I understand
the policy I prefer the flexibility of logging into the system and
hacking the application. I'm serious about hosting the application
though and the web site has a very good availability since 2008.

You know what I mean. As much as you have a hard time helping me
figure out the SSL performance issue as you don't have root access at
the moment I would be in the same situation vice versa.

That's one concern. The other concern is - as I mentioned (and nobody
commented on it) - that I seriously intend to open the service for
other Linux distributions so that the effort of taking screenshots can
be used by several distributions. Debian users would be able to use
screenshots uploaded by Ubuntu users. And CentOS users would see
screenshots from OpenSuSE users. Is there a case where DSA-maintained
hardware was used in such a context yet?

Vexxhost as a sponsor (also for other related projects) has proven to
be a reliable and committed ISP. And if performance is the issue it
looks like they pimp the server until it fits again.

?Christoph


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iEYEARECAAYFAlL7wE0ACgkQCV53xXnMZYZh+gCg+AvZZj4sTC4axFvW/77rkiWk
m78AoKGm1SpcdLjYVum107OHO85Yk2QH
=kdnl
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52fbc04d.1090...@debian.org



Re: SSL for screenshots.debian.net?

2014-02-12 Thread Christoph Haas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Not yet. But /proc/sys/kernel/random/entropy_avail never dropped lower
than 100. Do you still suspect a lack of entropy?

?Christoph


On 12.02.2014 19:18, Luca Filipozzi wrote:
 Do you have haveged installed?
 
 On Wed, Feb 12, 2014 at 07:14:57PM +0100, Christoph Haas wrote:
 -BEGIN PGP SIGNED MESSAGE- The server sponsor from
 Vexxhost reacted very quickly though and has offered a faster
 server. So I will deploy the application there and try HTTPS
 globally again.
 
 I may also try to put an nginx in front. Somehow I have a bad
 feeling with mod_wsgi and Apache-mpm-worker.
 

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iEYEARECAAYFAlL7wOAACgkQCV53xXnMZYZUqgCdHVP76KQHAqddx+qSQZmXriHt
XhwAmwV2WAwT33wtXa5Crxeq0dKNghMn
=AOs1
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52fbc0e0.2090...@debian.org



  1   2   3   4   5   6   7   8   9   10   >