similar to: Patch to add gpg support to logcheck.

Displaying 20 results from an estimated 100 matches similar to: "Patch to add gpg support to logcheck."

2009 Apr 03
1
ssh failed login rule problem
Hi there, I know this is the classic RTFM list question but... I've really tried hard on this and no result! This is what I'm receving from logcheck: System Events =-=-=-=-=-=-= Apr 3 06:55:13 bsg sshd[32246]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=123.233.245.226 user=root Apr 3 06:55:19 bsg sshd[32248]: pam_unix(sshd:auth):
2004 May 26
5
Bug#251046: logcheck: invalid mktemp -p option
Package: logcheck Version: 1.1.1-13.1woody1 Severity: important logcheck line 56 uses "TMPDIR=$(mktemp -d -p ..." but mktemp from woody doesn't accept -p option Cheers, Chris -- System Information Debian Release: 3.0 Kernel Version: Linux ethlife-a 2.4.26-vs1.27 #4 SMP Mit Apr 28 15:20:15 MEST 2004 i686 unknown Versions of the packages logcheck depends on: ii cron
2008 May 15
1
Bug#471936: setting package to logcheck-database logtail logcheck, tagging 473619, tagging 478334, tagging 472368 ...
# Automatically generated email from bts, devscripts version 2.10.27 # # logcheck (1.2.64) unstable; urgency=low # # * ignore.d.server/dhcp # - Adding dhcp rules for DNS updates by ddns_remove_a() # (closes: #459875, #472368) # - Added dhcp "removed reverse map" rule, which occurs on DHCPRELEASE. # * ignore.d.server/spamd # - deal with socket connections by e.g. evolution
2006 May 25
4
Does TMail support Nested Multipart Messages? (Repost)
Hi, does anybody know if TMail supports nested multipart messages? I read a changelog that indicates so (http://dev.rubyonrails.org/svn/rails/trunk/actionmailer/CHANGELOG), but I haven''t been able to get it working so far. Maybe I am doing something wrong here? I attached the sample mail. Here is the code to parse it: require File.dirname(__FILE__) +
2008 Jul 03
2
Bug#489172: logcheck: please add Auto-Submitted header field to mailouts
Package: logcheck Version: 1.2.54 Severity: wishlist Please add the header "Auto-Submitted: auto-generated" to mails generated by logcheck. This header should be supported by many email autoresponders and should prevent the need to set up logcheck specific rules for "vacation"-type autoresponders. Headers can be added in mail using the -a switch, e.g. mail -a
2010 Feb 03
3
handling multitrack Ogg
On Wed, Feb 3, 2010 at 11:21 AM, Chris Double <chris.double at double.co.nz> wrote: > Excerpts from Frank Barchard's message of Wed Feb 03 13:11:15 +1300 2010: >> >> Yes, and its good to learn from DVD's too. DVD is a subpart of MPEG: http://www.mpucoder.com/DVD/vobov.html, http://dvd.sourceforge.net/dvdinfo/dvdmpeg.html . Uses the same functionality for tracks, iiuc.
2007 Oct 06
1
Bug#445537: logcheck: Kein Deutsch in config Dateien bitte
Package: logcheck Version: 1.2.62 Severity: minor # Send the results as attachment or not. # 0=not as attachment; 1=as attachment # Default ist 0 ^^^ MAILASATTACH=0 -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.23-rc8+cfs (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8,
2004 Aug 06
0
[ANNOUNCE] pymp3cut
Hi there, I'm pleased to announce the availability (CVS only for now) of pymp3cut. pymp3cut is a GPLed Python command line tool designed to automatically cut very big mp3 files according to a timeline, and postprocess each subfile with any tool of your choice in a single run. It's useful if you stream very long events (10 hours or so) like congresses using IceCast and want to cut the
2010 Feb 04
2
handling multitrack Ogg
What would the creation of a AVI or MPG with 2 audio tracks tell me that I don't know yet? I can just use normal ffmpeg for that - ffmpegx is just a GUI transcoding tool based on ffmpeg and the latest ffmpegx release is more than 2 years old. Anyway, I did look at the AVI spec after this email (http://msdn.microsoft.com/en-us/library/dd318183%28VS.85%29.aspx) and found that while each track
2018 Jan 10
2
Doveadm field for message body without attachments
Happy new year to all, what is the message field in doveadm data model representing the body without attachments? I need to dump the message body without the attachments so as to avoid unnecessary size of the exported files and while I am also not interested in this part of the message. with kind regards Athanasios
2016 Oct 17
0
BoF: Shipping Software as LLVM IR (@Upcoming Dev Mtg)
Hi Vikram, It is a bit more that just “efficient (de)serialization” as there is some amount of tradeoff to make between “size” vs “speed” vs “flexibility” (which are all some sort of “efficient”). For instance what if we get a faster deserialization but got larger size? That might be an issue for some people who’d like to ship bitcode. Another thing is that we may get better speed/size by
2008 Oct 25
7
Routing of result not clear in ActionMailer
Dear all, I am trying to understand the following behaviour of the ActionMailer in Rails 2. I have an emailer_controller.rb class EmailerController < ApplicationController def send_mail Emailer::deliver_contact_email(params[:email]) end end I have a model emailer.rb class Emailer < ActionMailer::Base def contact_email(email_params, sent_at = Time.now) @recipients =
2016 Oct 27
1
BoF: Shipping Software as LLVM IR (@Upcoming Dev Mtg)
Hi I am late to the party. Here is my personal take of the topic: * Do you ship software as IR today? What lessons have you learned? Yes. We accept AppStore submission in bitcode (LLVM IR). The core function in clang is upstreamed and you can look up the related code path triggered by -fembed-bitcode option. * Challenges of shipping software as IR Compatibility: We are trying to enhance the
2010 Feb 03
2
handling multitrack Ogg
On Tue, Feb 2, 2010 at 1:47 PM, Silvia Pfeiffer <silviapfeiffer1 at gmail.com>wrote: > On Wed, Feb 3, 2010 at 5:07 AM, Frank Barchard <fbarchard at google.com> > wrote: > > It sounds like you're on the right track. There are 2 places I would > start > > looking - DVD's, and Quicktime. > > Quicktime is mature and the container is the basis for mp4
2016 Oct 17
3
BoF: Shipping Software as LLVM IR (@Upcoming Dev Mtg)
Hi Mehdi, Yes, we did see your earlier post. Efficient (de)serialization is definitely important for both exporting (a la LTO and ThinLTO) and for shipping code as IR. I expect most use cases of the latter would benefit. -—Vikram // Vikram S. Adve // Professor, Department of Computer Science // University of Illinois at Urbana-Champaign // vadve at illinois.edu<mailto:vadve at
2018 Jan 10
0
Doveadm field for message body without attachments
> On January 10, 2018 at 11:49 AM Athanasios Viennas <aviennas at vtopia.gr> wrote: > > > > Happy new year to all, > > what is the message field in doveadm data model representing the body > without attachments? I need to dump the message body without the > attachments so as to avoid unnecessary size of the exported files and > while I am also not
2012 Sep 30
0
Questions relating RTP packetisation
Hello. I am working on implementing RFC 5574 (RTP Payload Format for the Speex Codec) in the ffmpeg and have a question concerning it. It would be nice if somebody could answered it. * Chapter 4.1.1 Registration of Media Type Audio/Speex, subpart "Optional parameters" states these SDP optional parameters: vbr: variable bit-rate - either 'on', 'off', or 'vad'
2010 Feb 03
0
handling multitrack Ogg
On Mac the ffmpegx tool supports 2 audio tracks. Maybe worth checking out? http://www.ffmpegx.com/index.html - Creates AVI or MPG files with two audio tracks. - *Supports subtitles* in VobSub, SubRip, MicroDVD, SubViewer, Sami, VPlayer, RT, SSA, AQTitle, JACOsub and MPsubt formats On Tue, Feb 2, 2010 at 5:40 PM, Silvia Pfeiffer <silvia at silvia-pfeiffer.de>wrote: > On Wed,
2010 Feb 04
0
handling multitrack Ogg
DVD has the UI and the low level meta information. The API you propose is the glue between the 2. It also has practical content. Could a DVD like UI be implemented on top of your API? It may need more exploration features? Could your API be used on DVD content asis? Do your APIs have 1:1 relationship with meta information in the files? multiple languages requires language codes match up. Your
2002 Oct 09
5
Value too large for defined data type
Howdy, I am just starting to use rsync and now have an rsync server set up to back up our various machines. I recently started getting an error that is confusing and I can't find info documented on it. I searched the news group and found it mentioned but no solution yet. I get the error when sync'ing from a Solaris 8 machine to my Solaris 8 server. stat