Samba Print Server problémák

Fórumok

Két nyomtatót szeretnénk Ubuntu alatti Samba server alól működtetni. A probléma, hogy a Windows kliensek nem tudnak nyomtatni rajta. Lokálisan, a Sambás gépről működik a nyomtatás ezért gondolom a samba beállításokkal lehet gond.
A Windows driver fájlokat nem tettem fel a samba szerverre, az Ubuntus hogyanok szerint nem szükséges ha lokálisan fel vannak telepítve a Windows kliensekre.
Így néz ki jelenleg az /etc/samba/smb.conf fájlban a nyomtatásra vonatkozó rész:

load printers = yes
show add printer wizard = no
printing = cups
printcap name = cups
disable spoolss = yes

ÉS

[printers]
; comment = All Printers
browseable = yes
path = /var/spool/samba
printable = yes
guest ok = yes
; read only = yes
; create mask = 0700

Mindenesetre bemásolom egyben is az smb.conf fájl teljes tartalmát:

[global]

; follow symlinks = yes
wide links = yes
unix extensions = no

## Browsing/Identification ###

# Change this to the workgroup/NT-domain name your Samba server will part of
workgroup = UBUNTU-FS

# server string is the equivalent of the NT Description field
server string = %h server (Samba, Ubuntu)

# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
; wins support = no

# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z

# This will prevent nmbd to search for NetBIOS names through DNS.
dns proxy = no

# What naming service and in what order should we use to resolve host names
# to IP addresses
; name resolve order = lmhosts host wins bcast

#### Networking ####

# The specific set of interfaces / networks to bind to
# This can be either the interface name or an IP address/netmask;
# interface names are normally preferred
; interfaces = 127.0.0.0/8 eth0

# Only bind to the named interfaces and/or networks; you must use the
# 'interfaces' option above to use this.
# It is recommended that you enable this feature if your Samba machine is
# not protected by a firewall or is a firewall itself. However, this
# option cannot handle dynamic or non-broadcast interfaces correctly.
; bind interfaces only = true

#### Debugging/Accounting ####

# This tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/log.%m

# Cap the size of the individual log files (in KiB).
max log size = 1000

# If you want Samba to only log through syslog then set the following
# parameter to 'yes'.
; syslog only = no

# We want Samba to log a minimum amount of information to syslog. Everything
# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
# through syslog you should set the following parameter to something higher.
syslog = 0

# Do something sensible when Samba crashes: mail the admin a backtrace
panic action = /usr/share/samba/panic-action %d

####### Authentication #######

# "security = user" is always a good idea. This will require a Unix account
# in this server for every user accessing the server. See
# /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html
# in the samba-doc package for details.
security = user

username map = /etc/samba/smbusers

# You may wish to use password encryption. See the section on
# 'encrypt passwords' in the smb.conf(5) manpage before enabling.
encrypt passwords = true

# If you are using encrypted passwords, Samba will need to know what
# password database type you are using.
; passdb backend = tdbsam

obey pam restrictions = yes

; guest account = nobody
invalid users = root

# This boolean parameter controls whether Samba attempts to sync the Unix
# password with the SMB password when the encrypted SMB password in the
# passdb is changed.
unix password sync = yes

# For Unix password sync to work on a Debian GNU/Linux system, the following
# parameters must be set (thanks to Ian Kahan < for
# sending the correct chat script for the passwd program in Debian Sarge).
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .

# This boolean controls whether PAM will be used for password changes
# when requested by an SMB client instead of the program listed in
# 'passwd program'. The default is 'no'.
pam password change = yes
# This option controls how nsuccessful authentication attempts are mapped
# to anonymous connections
map to guest = bad user

########## Domains ###########

# Is this machine able to authenticate users. Both PDC and BDC
# must have this setting enabled. If you are the BDC you must
# change the 'domain master' setting to no
#
; domain logons = yes
#
# The following setting only takes effect if 'domain logons' is set
# It specifies the location of the user's profile directory
# from the client point of view)
# The following required a [profiles] share to be setup on the
# samba server (see below)
; logon path = \\%N\profiles\%U
# Another common choice is storing the profile in the user's home directory
; logon path = \\%n\%u\profile

# The following setting only takes effect if 'domain logons' is set
# It specifies the location of a user's home directory (from the client
# point of view)
; logon drive = H:
; logon home = \\%n\%u

# The following setting only takes effect if 'domain logons' is set
# It specifies the script to run during logon. The script must be stored
# in the [netlogon] share
# NOTE: Must be store in 'DOS' file format convention
; logon script = logon.cmd

# This allows Unix users to be created on the domain controller via the SAMR
# RPC pipe. The example command creates a user account with a disabled Unix
# password; please adapt to your needs
; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u

########## Printing ##########

load printers = yes
show add printer wizard = no
printing = cups
printcap name = cups
disable spoolss = yes

# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
; load printers = yes

# lpr(ng) printing. You may wish to override the location of the
# printcap file
; printing = bsd
; printcap name = /etc/printcap

# CUPS printing. See also the cupsaddsmb(8) manpage in the
# cupsys-client package.
; printing = cups
; printcap name = cups

############ Misc ############

# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting
; include = /home/samba/etc/smb.conf.%m

# Most people will find that this option gives better performance.
# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html
# for details
# You may want to add the following on a Linux system:
# SO_RCVBUF=8192 SO_SNDBUF=8192
socket options = TCP_NODELAY SO_RCVBUF=16384 SO_SNDBUF=16384

# The following parameter is useful only if you have the linpopup package
# installed. The samba maintainer and the linpopup maintainer are
# working to ease installation and configuration of linpopup and samba.
; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' &

# Domain Master specifies Samba to be the Domain Master Browser. If this
# machine will be configured as a BDC (a secondary logon server), you
# must set this to 'no'; otherwise, the default behavior is recommended.
; domain master = auto

# Some defaults for winbind (make sure you're not using the ranges
# for something else.)
; idmap uid = 10000-20000
; idmap gid = 10000-20000
; template shell = /bin/bash

# The following was the default behaviour in sarge,
# but samba upstream reverted the default because it might induce
# performance issues in large organizations.
# See Debian bug #368251 for some of the consequences of *not*
# having this setting and smb.conf(5) for details.
; winbind enum groups = yes
; winbind enum users = yes

# Setup usershare options to enable non-root users to share folders
# with the net usershare command.

# Maximum number of usershare. 0 (default) means that usershare is disabled.
; usershare max shares = 100

# Allow users who've been granted usershare privileges to create
# public shares, not just authenticated ones
usershare allow guests = yes

#======================= Share Definitions =======================

# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each
# user's home directory as \\server\username
[homes]
comment = Home Directories
browseable = no

# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
read only = yes

# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
; create mask = 0700

# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
; directory mask = 0700

# By default, \\server\username shares can be connected to by anyone
# with access to the samba server. Un-comment the following parameter
# to make sure that only "username" can connect to \\server\username
# This might need tweaking when using external authentication schemes
valid users = %S

# Un-comment the following and create the netlogon directory for Domain Logons
# (you need to configure Samba to act as a domain controller too.)
;[netlogon]
; comment = Network Logon Service
; path = /home/samba/netlogon
; guest ok = yes
; read only = yes
; share modes = no

# Un-comment the following and create the profiles directory to store
# users profiles (see the "logon path" option above)
# (you need to configure Samba to act as a domain controller too.)
# The path below should be writable by all users so that their
# profile directory may be created the first time they log on
;[profiles]
; comment = Users profiles
; path = /home/samba/profiles
; guest ok = no
; browseable = no
; create mask = 0600
; directory mask = 0700

[printers]
; comment = All Printers
browseable = yes
path = /var/spool/samba
printable = yes
guest ok = yes
; read only = yes
; create mask = 0700

# Windows clients look for this share name as a source of downloadable
# printer drivers
;[print$]
; comment = Printer Drivers
; path = /var/lib/samba/printers
; browseable = yes
; read only = yes
; guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# Replace 'ntadmin' with the name of the group your admin users are
# members of.
write list = root, @ntadmin
; write list = root, @lpadmin,nobody

# A sample share for sharing your CD-ROM with others.
;[cdrom]
; comment = Samba server's CD-ROM
; read only = yes
; locking = no
; path = /cdrom
; guest ok = yes

# The next two parameters show how to auto-mount a CD-ROM when the
# cdrom share is accesed. For this to work /etc/fstab must contain
# an entry like this:
#
# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0
#
# The CD-ROM gets unmounted automatically after the connection to the
#
# If you don't want to use auto-mounting/unmounting make sure the CD
# is mounted on /cdrom
#
; preexec = /bin/mount /cdrom
; postexec = /bin/umount /cdrom

[fajlszerver]
comment = iroda
path = /srv/samba/share
browsable = yes
guest ok = yes
; read only = no
; create mask = 0755
; writeable = yes
; valid users = szamba

Hozzászólások

SZVSZ a 'disable spoolss = yes' kerulendo. CUPS logok? A raw formatum at van engedve?

/var/log/cups/error_log:

[03/May/2013:07:49:22 +0200] failed to CreateDevice: org.freedesktop.ColorManager.AlreadyExists:device id 'cups-Xerox-Phaser-3110' already exists
E [03/May/2013:07:49:22 +0200] Failed to update TXT record for Hewlett-Packard HP LaserJet P2015 Series @ ubuntu-fs: -2
E [03/May/2013:07:49:22 +0200] Failed to update TXT record for Hewlett-Packard HP LaserJet P2055dn @ ubuntu-fs: -2
E [03/May/2013:07:49:22 +0200] Failed to update TXT record for IP7200LAN @ ubuntu-fs: -2
E [03/May/2013:07:49:22 +0200] Failed to update TXT record for Xerox Phaser 3110 @ ubuntu-fs: -2
E [03/May/2013:15:45:35 +0200] Failed to update TXT record for Hewlett-Packard HP LaserJet P2015 Series @ ubuntu-fs: -2
E [03/May/2013:15:50:38 +0200] [Job 39] Stopping unresponsive job!
E [03/May/2013:16:04:24 +0200] Returning HTTP Forbidden for Resume-Printer (ipp://localhost/printers/Hewlett-Packard-HP-LaserJet-P2015-Series) from localhost
E [03/May/2013:16:04:30 +0200] Failed to update TXT record for Hewlett-Packard HP LaserJet P2015 Series @ ubuntu-fs: -2
W [03/May/2013:16:04:30 +0200] failed to CreateProfile: org.freedesktop.ColorManager.AlreadyExists:profile id 'Hewlett-Packard-HP-LaserJet-P2015-Series-Gray..' already exists
W [03/May/2013:16:04:30 +0200] failed to CreateDevice: org.freedesktop.ColorManager.AlreadyExists:device id 'cups-Hewlett-Packard-HP-LaserJet-P2015-Series' already exists
E [03/May/2013:16:04:30 +0200] Failed to update TXT record for Hewlett-Packard HP LaserJet P2015 Series @ ubuntu-fs: -2
E [03/May/2013:16:07:39 +0200] [Job 42] Job aborted after 5 unsuccessful attempts.
D [03/May/2013:16:07:39 +0200] [Job 42] The following messages were recorded from 16:07:33 to 16:07:39
D [03/May/2013:16:07:39 +0200] [Job 42] Setting job-hold-until to no-hold
D [03/May/2013:16:07:39 +0200] [Job 42] Job released by user.
D [03/May/2013:16:07:39 +0200] [Job 42] job-sheets=none,none
D [03/May/2013:16:07:39 +0200] [Job 42] argv[0]="Hewlett-Packard-HP-LaserJet-P2015-Series"
D [03/May/2013:16:07:39 +0200] [Job 42] argv[1]="42"
D [03/May/2013:16:07:39 +0200] [Job 42] argv[2]="meszter"
D [03/May/2013:16:07:39 +0200] [Job 42] argv[3]="Test Page"
D [03/May/2013:16:07:39 +0200] [Job 42] argv[4]="1"
D [03/May/2013:16:07:39 +0200] [Job 42] argv[5]="job-uuid=urn:uuid:09e672ff-98e9-3c68-4112-25c8aa4a11ce job-originating-host-name=localhost time-at-creation=1367589878 time-at-processing=1367590053"
D [03/May/2013:16:07:39 +0200] [Job 42] argv[6]="/var/spool/cups/d00042-001"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[1]="CUPS_DATADIR=/usr/share/cups"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[6]="CUPS_SERVERROOT=/etc/cups"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[7]="CUPS_STATEDIR=/var/run/cups"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[8]="HOME=/var/spool/cups/tmp"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[10]="SERVER_ADMIN=root@ubuntu-fs"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[11]="SOFTWARE=CUPS/1.5.3"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[12]="TMPDIR=/var/spool/cups/tmp"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[13]="USER=root"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[14]="CUPS_SERVER=/var/run/cups/cups.sock"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[15]="CUPS_ENCRYPTION=IfRequested"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[16]="IPP_PORT=631"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[17]="CHARSET=utf-8"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[18]="LANG=hu_HU.UTF-8"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[19]="PPD=/etc/cups/ppd/Hewlett-Packard-HP-LaserJet-P2015-Series.ppd"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[20]="RIP_MAX_CACHE=128m"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[21]="CONTENT_TYPE=application/vnd.cups-pdf-banner"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[22]="DEVICE_URI=hp:/usb/HP_LaserJet_P2015_Series?serial=00CNBW8653RS"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[23]="PRINTER_INFO=Hewlett-Packard HP LaserJet P2015 Series"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[24]="PRINTER_LOCATION=ubuntu-fs"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[25]="PRINTER=Hewlett-Packard-HP-LaserJet-P2015-Series"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[26]="PRINTER_STATE_REASONS=none"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[27]="CUPS_FILETYPE=document"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[28]="FINAL_CONTENT_TYPE=application/vnd.cups-postscript"
D [03/May/2013:16:07:39 +0200] [Job 42] envp[29]="AUTH_I****"
D [03/May/2013:16:07:39 +0200] [Job 42] Started filter /usr/lib/cups/filter/bannertopdf (PID 25032)
D [03/May/2013:16:07:39 +0200] [Job 42] Started filter /usr/lib/cups/filter/pdftopdf (PID 25033)
D [03/May/2013:16:07:39 +0200] [Job 42] Started filter /usr/lib/cups/filter/pdftops (PID 25034)
D [03/May/2013:16:07:39 +0200] [Job 42] Started backend /usr/lib/cups/backend/hp (PID 25035)
D [03/May/2013:16:07:39 +0200] [Job 42] pdftops - copying to temp print file "/tmp/061ca518f4d12"
D [03/May/2013:16:07:39 +0200] [Job 42] Using image rendering resolution 300 dpi
D [03/May/2013:16:07:39 +0200] [Job 42] Started filter pdftops (PID 25036)
D [03/May/2013:16:07:39 +0200] [Job 42] Started filter pstops (PID 25037)
D [03/May/2013:16:07:39 +0200] [Job 42] Page = 595x842; 12,12 to 583,829
D [03/May/2013:16:07:39 +0200] [Job 42] slow_collate=0, slow_duplex=0, slow_order=0
D [03/May/2013:16:07:39 +0200] [Job 42] Before copy_comments - %!PS-Adobe-3.0
D [03/May/2013:16:07:39 +0200] [Job 42] %!PS-Adobe-3.0
D [03/May/2013:16:07:39 +0200] [Job 42] %Produced by poppler pdftops version: 0.18.4 (http://poppler.freedesktop.org)
D [03/May/2013:16:07:39 +0200] [Job 42] %%LanguageLevel: 2
D [03/May/2013:16:07:39 +0200] [Job 42] %%DocumentSuppliedResources: (atend)
D [03/May/2013:16:07:39 +0200] [Job 42] %%DocumentMedia: plain 595 842 0 () ()
D [03/May/2013:16:07:39 +0200] [Job 42] %%BoundingBox: 0 0 595 842
D [03/May/2013:16:07:39 +0200] [Job 42] %%Pages: 1
D [03/May/2013:16:07:39 +0200] [Job 42] %%EndComments
D [03/May/2013:16:07:39 +0200] [Job 42] Before copy_prolog - %%BeginDefaults
D [03/May/2013:16:07:39 +0200] [Job 42] STATE: +connecting-to-device
D [03/May/2013:16:07:39 +0200] [Job 42] Before copy_setup - %%BeginSetup
D [03/May/2013:16:07:39 +0200] [Job 42] Before page loop - %%Page: 1 1
D [03/May/2013:16:07:39 +0200] [Job 42] Copying page 1...
D [03/May/2013:16:07:39 +0200] [Job 42] PAGE: 1 1
D [03/May/2013:16:07:39 +0200] [Job 42] pagew = 571.0, pagel = 817.4
D [03/May/2013:16:07:39 +0200] [Job 42] bboxx = 0, bboxy = 0, bboxw = 595, bboxl = 842
D [03/May/2013:16:07:39 +0200] [Job 42] PageLeft = 12.0, PageRight = 583.0
D [03/May/2013:16:07:39 +0200] [Job 42] PageTop = 829.4, PageBottom = 12.0
D [03/May/2013:16:07:39 +0200] [Job 42] PageWidth = 595.0, PageLength = 842.0
D [03/May/2013:16:07:39 +0200] [Job 42] prnt/backend/hp.c 745: ERROR: open device failed stat=12: hp:/usb/HP_LaserJet_P2015_Series?serial=00CNBW8653RS
D [03/May/2013:16:07:39 +0200] [Job 42] Wrote 1 pages...
D [03/May/2013:16:07:39 +0200] [Job 42] PID 25036 (pdftops) exited with no errors.
D [03/May/2013:16:07:39 +0200] [Job 42] PID 25037 (pstops) exited with no errors.
D [03/May/2013:16:07:39 +0200] [Job 42] Backend returned status 1 (failed)
D [03/May/2013:16:07:39 +0200] [Job 42] End of messages
D [03/May/2013:16:07:39 +0200] [Job 42] printer-state=3(idle)
D [03/May/2013:16:07:39 +0200] [Job 42] printer-state-message="/usr/lib/cups/backend/hp failed"
D [03/May/2013:16:07:39 +0200] [Job 42] printer-state-reasons=none
E [03/May/2013:16:10:14 +0200] Returning HTTP Forbidden for Set-Job-Attributes (ipp://localhost/jobs/43) from localhost
E [03/May/2013:16:12:11 +0200] Returning HTTP Forbidden for Set-Job-Attributes (ipp://localhost/jobs/43) from localhost
E [03/May/2013:16:12:19 +0200] Returning HTTP Forbidden for Set-Job-Attributes (ipp://localhost/jobs/43) from localhost
E [03/May/2013:16:12:24 +0200] [Job 43] Job aborted after 5 unsuccessful attempts.
D [03/May/2013:16:12:24 +0200] [Job 43] The following messages were recorded from 16:12:19 to 16:12:24
D [03/May/2013:16:12:24 +0200] [Job 43] Setting job-hold-until to no-hold
D [03/May/2013:16:12:24 +0200] [Job 43] Job released by user.
D [03/May/2013:16:12:24 +0200] [Job 43] job-sheets=none,none
D [03/May/2013:16:12:24 +0200] [Job 43] argv[0]="Hewlett-Packard-HP-LaserJet-P2015-Series"
D [03/May/2013:16:12:24 +0200] [Job 43] argv[1]="43"
D [03/May/2013:16:12:24 +0200] [Job 43] argv[2]="meszter"
D [03/May/2013:16:12:24 +0200] [Job 43] argv[3]="Test Page"
D [03/May/2013:16:12:24 +0200] [Job 43] argv[4]="1"
D [03/May/2013:16:12:24 +0200] [Job 43] argv[5]="job-uuid=urn:uuid:d6f504d0-d25b-3e6c-7a96-0f427cfacabd job-originating-host-name=localhost time-at-creation=1367590074 time-at-processing=1367590339"
D [03/May/2013:16:12:24 +0200] [Job 43] argv[6]="/var/spool/cups/d00043-001"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[1]="CUPS_DATADIR=/usr/share/cups"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[6]="CUPS_SERVERROOT=/etc/cups"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[7]="CUPS_STATEDIR=/var/run/cups"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[8]="HOME=/var/spool/cups/tmp"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[10]="SERVER_ADMIN=root@ubuntu-fs"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[11]="SOFTWARE=CUPS/1.5.3"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[12]="TMPDIR=/var/spool/cups/tmp"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[13]="USER=root"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[14]="CUPS_SERVER=/var/run/cups/cups.sock"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[15]="CUPS_ENCRYPTION=IfRequested"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[16]="IPP_PORT=631"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[17]="CHARSET=utf-8"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[18]="LANG=hu_HU.UTF-8"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[19]="PPD=/etc/cups/ppd/Hewlett-Packard-HP-LaserJet-P2015-Series.ppd"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[20]="RIP_MAX_CACHE=128m"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[21]="CONTENT_TYPE=application/vnd.cups-pdf-banner"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[22]="DEVICE_URI=hp:/usb/HP_LaserJet_P2015_Series?serial=00CNBW8653RS"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[23]="PRINTER_INFO=Hewlett-Packard HP LaserJet P2015 Series"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[24]="PRINTER_LOCATION=ubuntu-fs"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[25]="PRINTER=Hewlett-Packard-HP-LaserJet-P2015-Series"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[26]="PRINTER_STATE_REASONS=none"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[27]="CUPS_FILETYPE=document"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[28]="FINAL_CONTENT_TYPE=application/vnd.cups-postscript"
D [03/May/2013:16:12:24 +0200] [Job 43] envp[29]="AUTH_I****"
D [03/May/2013:16:12:24 +0200] [Job 43] Started filter /usr/lib/cups/filter/bannertopdf (PID 25377)
D [03/May/2013:16:12:24 +0200] [Job 43] Started filter /usr/lib/cups/filter/pdftopdf (PID 25378)
D [03/May/2013:16:12:24 +0200] [Job 43] Started filter /usr/lib/cups/filter/pdftops (PID 25379)
D [03/May/2013:16:12:24 +0200] [Job 43] Started backend /usr/lib/cups/backend/hp (PID 25380)
D [03/May/2013:16:12:24 +0200] [Job 43] pdftops - copying to temp print file "/tmp/06323518e0641"
D [03/May/2013:16:12:24 +0200] [Job 43] Using image rendering resolution 300 dpi
D [03/May/2013:16:12:24 +0200] [Job 43] Started filter pdftops (PID 25381)
D [03/May/2013:16:12:24 +0200] [Job 43] Started filter pstops (PID 25382)
D [03/May/2013:16:12:24 +0200] [Job 43] Page = 595x842; 12,12 to 583,829
D [03/May/2013:16:12:24 +0200] [Job 43] slow_collate=0, slow_duplex=0, slow_order=0
D [03/May/2013:16:12:24 +0200] [Job 43] Before copy_comments - %!PS-Adobe-3.0
D [03/May/2013:16:12:24 +0200] [Job 43] %!PS-Adobe-3.0
D [03/May/2013:16:12:24 +0200] [Job 43] %Produced by poppler pdftops version: 0.18.4 (http://poppler.freedesktop.org)
D [03/May/2013:16:12:24 +0200] [Job 43] %%LanguageLevel: 2
D [03/May/2013:16:12:24 +0200] [Job 43] %%DocumentSuppliedResources: (atend)
D [03/May/2013:16:12:24 +0200] [Job 43] %%DocumentMedia: plain 595 842 0 () ()
D [03/May/2013:16:12:24 +0200] [Job 43] %%BoundingBox: 0 0 595 842
D [03/May/2013:16:12:24 +0200] [Job 43] %%Pages: 1
D [03/May/2013:16:12:24 +0200] [Job 43] %%EndComments
D [03/May/2013:16:12:24 +0200] [Job 43] Before copy_prolog - %%BeginDefaults
D [03/May/2013:16:12:24 +0200] [Job 43] STATE: +connecting-to-device
D [03/May/2013:16:12:24 +0200] [Job 43] Before copy_setup - %%BeginSetup
D [03/May/2013:16:12:24 +0200] [Job 43] Before page loop - %%Page: 1 1
D [03/May/2013:16:12:24 +0200] [Job 43] Copying page 1...
D [03/May/2013:16:12:24 +0200] [Job 43] PAGE: 1 1
D [03/May/2013:16:12:24 +0200] [Job 43] pagew = 571.0, pagel = 817.4
D [03/May/2013:16:12:24 +0200] [Job 43] bboxx = 0, bboxy = 0, bboxw = 595, bboxl = 842
D [03/May/2013:16:12:24 +0200] [Job 43] PageLeft = 12.0, PageRight = 583.0

access_log:

localhost - - [03/May/2013:16:33:10 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:33:10 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - postas [03/May/2013:16:33:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:16:34:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - - [03/May/2013:16:34:26 +0200] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [03/May/2013:16:34:26 +0200] "POST / HTTP/1.1" 200 1511 CUPS-Get-Devices -
localhost - - [03/May/2013:16:34:49 +0200] "POST /printers/HP-LaserJet-P2015 HTTP/1.1" 200 421 Print-Job successful-ok
localhost - csaba [03/May/2013:16:35:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - - [03/May/2013:16:36:28 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:28 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:28 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:28 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:36 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:36 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:36 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:36 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:38 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:38 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:38 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:38 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:42 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:42 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:45 +0200] "POST /printers/HP-LaserJet-P2015 HTTP/1.1" 200 268 Print-Job successful-ok
localhost - - [03/May/2013:16:36:50 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:50 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:51 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:51 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:51 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:51 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:53 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:53 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:53 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:53 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:36:55 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:36:55 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:39:32 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:39:32 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:39:34 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:39:34 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - meszter [03/May/2013:16:39:39 +0200] "POST /admin/ HTTP/1.1" 200 133 CUPS-Delete-Printer successful-ok
localhost - - [03/May/2013:16:39:43 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - meszter [03/May/2013:16:39:43 +0200] "POST / HTTP/1.1" 200 2720 CUPS-Get-Devices -
localhost - meszter [03/May/2013:16:39:48 +0200] "POST / HTTP/1.1" 200 1030 CUPS-Get-Devices -
localhost - - [03/May/2013:16:39:54 +0200] "POST / HTTP/1.1" 200 4868551 CUPS-Get-PPDs -
localhost - - [03/May/2013:16:39:56 +0200] "POST / HTTP/1.1" 200 204688 CUPS-Get-PPD -
localhost - - [03/May/2013:16:40:46 +0200] "POST /admin/ HTTP/1.1" 401 204788 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:16:40:46 +0200] "POST /admin/ HTTP/1.1" 200 204788 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:16:40:47 +0200] "POST /admin/ HTTP/1.1" 200 151 Resume-Printer successful-ok
localhost - meszter [03/May/2013:16:40:47 +0200] "POST /admin/ HTTP/1.1" 200 151 CUPS-Accept-Jobs successful-ok
localhost - meszter [03/May/2013:16:40:47 +0200] "POST /admin/ HTTP/1.1" 200 151 CUPS-Set-Default successful-ok
localhost - meszter [03/May/2013:16:40:47 +0200] "POST /admin/ HTTP/1.1" 200 182 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:16:40:47 +0200] "POST /admin/ HTTP/1.1" 200 212 CUPS-Add-Modify-Printer successful-ok
localhost - - [03/May/2013:16:40:49 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 439 Print-Job successful-ok
localhost - - [03/May/2013:16:40:53 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:40:53 +0200] "POST / HTTP/1.1" 200 344 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:41:23 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:41:23 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:41:25 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:41:28 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:41:28 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:41:30 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:41:40 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 30916 Print-Job successful-ok
localhost - - [03/May/2013:16:42:39 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 72561 Print-Job successful-ok
localhost - - [03/May/2013:16:42:49 +0200] "POST / HTTP/1.1" 200 254 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:42:52 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:42:54 +0200] "POST / HTTP/1.1" 200 254 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:42:56 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:42:56 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:42:57 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:42:57 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:42:57 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:42:57 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:43:12 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:43:12 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:43:12 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:43:12 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:43:14 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:43:14 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:43:16 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:44:51 +0200] "POST / HTTP/1.1" 200 254 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:45:05 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:45:07 +0200] "POST / HTTP/1.1" 200 254 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:45:11 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - postas [03/May/2013:16:45:11 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 403 0 - -
localhost - - [03/May/2013:16:45:11 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - - [03/May/2013:16:45:15 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - meszter [03/May/2013:16:45:15 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3127 - -
localhost - meszter [03/May/2013:16:45:15 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3127 - -
localhost - meszter [03/May/2013:16:45:23 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3127 - -
localhost - meszter [03/May/2013:16:45:24 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 304 0 - -
localhost - meszter [03/May/2013:16:45:24 +0200] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3127 - -
localhost - - [03/May/2013:16:45:28 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - meszter [03/May/2013:16:45:28 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3127 - -
localhost - meszter [03/May/2013:16:45:28 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 304 0 - -
localhost - meszter [03/May/2013:16:45:39 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3127 - -
localhost - meszter [03/May/2013:16:45:39 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 304 0 - -
localhost - meszter [03/May/2013:16:45:39 +0200] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3127 - -
localhost - postas [03/May/2013:16:47:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:16:48:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - csaba [03/May/2013:16:49:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - - [03/May/2013:16:50:15 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 875 Create-Job successful-ok
localhost - - [03/May/2013:16:50:15 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 3774026 Send-Document successful-ok
localhost - - [03/May/2013:16:54:04 +0200] "POST / HTTP/1.1" 200 254 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:54:07 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:54:07 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:55:07 +0200] "POST /jobs/ HTTP/1.1" 200 141 Cancel-Job successful-ok
localhost - - [03/May/2013:16:55:43 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 888 Create-Job successful-ok
localhost - - [03/May/2013:16:55:43 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 127785 Send-Document successful-ok
localhost - - [03/May/2013:16:56:12 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:56:12 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:56:12 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:56:12 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:56:13 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:56:13 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:56:13 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:16:56:13 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:16:58:46 +0200] "POST /jobs/ HTTP/1.1" 200 215 Set-Job-Attributes successful-ok
localhost - - [03/May/2013:16:58:48 +0200] "POST /jobs/ HTTP/1.1" 200 212 Set-Job-Attributes successful-ok
localhost - - [03/May/2013:16:59:48 +0200] "POST /jobs/ HTTP/1.1" 200 215 Set-Job-Attributes successful-ok
localhost - - [03/May/2013:16:59:50 +0200] "POST /jobs/ HTTP/1.1" 200 212 Set-Job-Attributes successful-ok
localhost - - [03/May/2013:17:00:11 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:17:00:11 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - postas [03/May/2013:17:01:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:17:02:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - csaba [03/May/2013:17:03:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok

localhost - - [03/May/2013:17:17:43 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:17:17:43 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:17:17:43 +0200] "POST / HTTP/1.1" 200 343 Create-Printer-Subscription successful-ok
localhost - postas [03/May/2013:17:29:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:17:30:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - csaba [03/May/2013:17:31:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - - [03/May/2013:17:32:19 +0200] "POST /admin/ HTTP/1.1" 401 217 CUPS-Add-Modify-Printer successful-ok
localhost - root [03/May/2013:17:32:19 +0200] "POST /admin/ HTTP/1.1" 200 217 CUPS-Add-Modify-Printer successful-ok
localhost - - [03/May/2013:17:34:52 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 411 Print-Job successful-ok
localhost - - [03/May/2013:17:35:04 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 411 Print-Job successful-ok
localhost - - [03/May/2013:17:35:16 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 442 Print-Job successful-ok
localhost - szamba [03/May/2013:17:35:16 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 442 Print-Job successful-ok
localhost - - [03/May/2013:17:35:35 +0200] "POST /jobs HTTP/1.1" 401 140 Cancel-Job successful-ok
localhost - - [03/May/2013:17:35:35 +0200] "POST /jobs HTTP/1.1" 200 141 Cancel-Job successful-ok
localhost - - [03/May/2013:17:35:42 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 442 Print-Job successful-ok
localhost - szamba [03/May/2013:17:35:42 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 442 Print-Job successful-ok
localhost - - [03/May/2013:17:35:57 +0200] "POST /jobs HTTP/1.1" 200 141 Release-Job successful-ok
localhost - - [03/May/2013:17:36:14 +0200] "POST /jobs HTTP/1.1" 200 141 Cancel-Job successful-ok
localhost - - [03/May/2013:17:36:39 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 411 Print-Job successful-ok
localhost - - [03/May/2013:17:36:45 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 442 Print-Job successful-ok
localhost - szamba [03/May/2013:17:36:45 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 442 Print-Job successful-ok
localhost - - [03/May/2013:17:36:55 +0200] "POST /jobs HTTP/1.1" 200 141 Cancel-Job successful-ok
localhost - - [03/May/2013:17:37:10 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 411 Print-Job successful-ok
localhost - - [03/May/2013:17:37:18 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 443 Print-Job successful-ok
localhost - meszter [03/May/2013:17:37:18 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 443 Print-Job successful-ok
localhost - - [03/May/2013:17:38:11 +0200] "POST /jobs HTTP/1.1" 401 140 Release-Job successful-ok
localhost - - [03/May/2013:17:38:12 +0200] "POST /jobs HTTP/1.1" 200 142 Release-Job successful-ok
localhost - postas [03/May/2013:17:43:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:17:44:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - csaba [03/May/2013:17:45:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - - [03/May/2013:17:53:57 +0200] "POST /jobs HTTP/1.1" 200 142 Cancel-Job successful-ok
localhost - - [03/May/2013:17:55:06 +0200] "POST /jobs/ HTTP/1.1" 200 212 Set-Job-Attributes client-error-not-possible
localhost - - [03/May/2013:17:55:13 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:17:55:13 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:17:55:19 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 401 438 Print-Job successful-ok
localhost - postas [03/May/2013:17:55:19 +0200] "POST /printers/HP-LaserJet-P2015-Takarekos HTTP/1.1" 200 438 Print-Job successful-ok
localhost - - [03/May/2013:17:55:26 +0200] "POST /jobs/ HTTP/1.1" 200 212 Set-Job-Attributes successful-ok
localhost - - [03/May/2013:17:55:35 +0200] "POST /jobs/ HTTP/1.1" 200 212 Set-Job-Attributes successful-ok
localhost - - [03/May/2013:17:56:23 +0200] "POST /admin/ HTTP/1.1" 401 174 CUPS-Add-Modify-Printer successful-ok
localhost - postas [03/May/2013:17:56:23 +0200] "POST /admin/ HTTP/1.1" 403 174 CUPS-Add-Modify-Printer successful-ok
localhost - - [03/May/2013:17:56:23 +0200] "POST /admin/ HTTP/1.1" 401 174 CUPS-Add-Modify-Printer successful-ok
localhost - - [03/May/2013:17:56:31 +0200] "POST /admin/ HTTP/1.1" 401 174 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:17:56:31 +0200] "POST /admin/ HTTP/1.1" 200 174 CUPS-Add-Modify-Printer client-error-bad-request
localhost - meszter [03/May/2013:17:56:37 +0200] "POST /admin/ HTTP/1.1" 200 174 CUPS-Add-Modify-Printer client-error-bad-request
localhost - meszter [03/May/2013:17:56:51 +0200] "POST /admin/ HTTP/1.1" 200 174 CUPS-Add-Modify-Printer client-error-bad-request
localhost - - [03/May/2013:17:56:54 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:17:56:54 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:17:56:56 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:17:57:01 +0200] "POST / HTTP/1.1" 200 254 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:17:57:05 +0200] "POST /admin/ HTTP/1.1" 401 174 CUPS-Add-Modify-Printer successful-ok
localhost - postas [03/May/2013:17:57:05 +0200] "POST /admin/ HTTP/1.1" 403 174 CUPS-Add-Modify-Printer successful-ok
localhost - - [03/May/2013:17:57:05 +0200] "POST /admin/ HTTP/1.1" 401 174 CUPS-Add-Modify-Printer successful-ok
localhost - - [03/May/2013:17:57:25 +0200] "POST /admin/ HTTP/1.1" 401 174 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:17:57:25 +0200] "POST /admin/ HTTP/1.1" 200 174 CUPS-Add-Modify-Printer client-error-bad-request
localhost - postas [03/May/2013:17:57:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:17:58:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - csaba [03/May/2013:17:59:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:18:00:15 +0200] "POST /admin/ HTTP/1.1" 200 174 CUPS-Add-Modify-Printer client-error-bad-request
localhost - - [03/May/2013:18:00:19 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:18:02:09 +0200] "POST /admin/ HTTP/1.1" 401 174 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:18:02:09 +0200] "POST /admin/ HTTP/1.1" 200 174 CUPS-Add-Modify-Printer client-error-bad-request
localhost - - [03/May/2013:18:02:26 +0200] "POST /admin/ HTTP/1.1" 401 151 CUPS-Delete-Printer successful-ok
localhost - meszter [03/May/2013:18:02:26 +0200] "POST /admin/ HTTP/1.1" 200 151 CUPS-Delete-Printer successful-ok
localhost - - [03/May/2013:18:02:29 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - - [03/May/2013:18:02:34 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - - [03/May/2013:18:02:38 +0200] "POST / HTTP/1.1" 200 254 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:18:02:40 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - postas [03/May/2013:18:02:40 +0200] "POST / HTTP/1.1" 403 123 CUPS-Get-Devices successful-ok
localhost - - [03/May/2013:18:02:40 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - meszter [03/May/2013:18:02:29 +0200] "POST / HTTP/1.1" 200 1780 CUPS-Get-Devices -
localhost - - [03/May/2013:18:02:45 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - meszter [03/May/2013:18:02:45 +0200] "POST / HTTP/1.1" 200 1780 CUPS-Get-Devices -
localhost - meszter [03/May/2013:18:03:00 +0200] "POST / HTTP/1.1" 200 1030 CUPS-Get-Devices -
localhost - - [03/May/2013:18:03:49 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - meszter [03/May/2013:18:03:49 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3127 - -
localhost - meszter [03/May/2013:18:03:49 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3127 - -
localhost - meszter [03/May/2013:18:03:54 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3127 - -
localhost - meszter [03/May/2013:18:03:54 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 304 0 - -
localhost - meszter [03/May/2013:18:03:54 +0200] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3176 - -
localhost - - [03/May/2013:18:04:10 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - meszter [03/May/2013:18:04:10 +0200] "POST / HTTP/1.1" 200 1780 CUPS-Get-Devices -
localhost - meszter [03/May/2013:18:04:25 +0200] "POST / HTTP/1.1" 200 1030 CUPS-Get-Devices -
localhost - - [03/May/2013:18:04:37 +0200] "POST / HTTP/1.1" 200 4868551 CUPS-Get-PPDs -
localhost - - [03/May/2013:18:05:03 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - meszter [03/May/2013:18:05:03 +0200] "POST / HTTP/1.1" 200 1780 CUPS-Get-Devices -
localhost - meszter [03/May/2013:18:05:18 +0200] "POST / HTTP/1.1" 200 1030 CUPS-Get-Devices -
localhost - - [03/May/2013:18:05:51 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - meszter [03/May/2013:18:05:51 +0200] "POST / HTTP/1.1" 200 1780 CUPS-Get-Devices -
localhost - meszter [03/May/2013:18:06:06 +0200] "POST / HTTP/1.1" 200 1030 CUPS-Get-Devices -
localhost - - [03/May/2013:18:06:43 +0200] "POST / HTTP/1.1" 200 255 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:18:06:46 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - meszter [03/May/2013:18:06:46 +0200] "POST / HTTP/1.1" 200 1913 CUPS-Get-Devices -
localhost - - [03/May/2013:18:06:51 +0200] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [03/May/2013:18:06:51 +0200] "POST / HTTP/1.1" 200 1731 CUPS-Get-Devices -
localhost - meszter [03/May/2013:18:06:51 +0200] "POST / HTTP/1.1" 200 1030 CUPS-Get-Devices -
localhost - - [03/May/2013:18:07:31 +0200] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - meszter [03/May/2013:18:07:31 +0200] "POST / HTTP/1.1" 200 2720 CUPS-Get-Devices -
localhost - meszter [03/May/2013:18:07:37 +0200] "POST / HTTP/1.1" 200 1030 CUPS-Get-Devices -
localhost - - [03/May/2013:18:08:06 +0200] "POST / HTTP/1.1" 200 4868551 CUPS-Get-PPDs -
localhost - - [03/May/2013:18:08:08 +0200] "POST / HTTP/1.1" 200 204688 CUPS-Get-PPD -
localhost - - [03/May/2013:18:08:27 +0200] "POST /admin/ HTTP/1.1" 401 204758 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:18:08:27 +0200] "POST /admin/ HTTP/1.1" 200 204758 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:18:08:27 +0200] "POST /admin/ HTTP/1.1" 200 140 Resume-Printer successful-ok
localhost - meszter [03/May/2013:18:08:27 +0200] "POST /admin/ HTTP/1.1" 200 140 CUPS-Accept-Jobs successful-ok
localhost - meszter [03/May/2013:18:08:27 +0200] "POST /admin/ HTTP/1.1" 200 140 CUPS-Set-Default successful-ok
localhost - meszter [03/May/2013:18:08:27 +0200] "POST /admin/ HTTP/1.1" 200 171 CUPS-Add-Modify-Printer successful-ok
localhost - meszter [03/May/2013:18:08:27 +0200] "POST /admin/ HTTP/1.1" 200 182 CUPS-Add-Modify-Printer successful-ok
localhost - - [03/May/2013:18:08:27 +0200] "POST / HTTP/1.1" 200 255 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:18:08:30 +0200] "POST /printers/HP-LaserJet-P2015-Series HTTP/1.1" 200 428 Print-Job successful-ok
localhost - - [03/May/2013:18:08:41 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - meszter [03/May/2013:18:08:41 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3176 - -
localhost - meszter [03/May/2013:18:08:41 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3176 - -
localhost - meszter [03/May/2013:18:08:45 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3176 - -
localhost - meszter [03/May/2013:18:08:45 +0200] "GET /admin/conf/cupsd.conf HTTP/1.1" 304 0 - -
localhost - meszter [03/May/2013:18:08:45 +0200] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3127 - -
localhost - postas [03/May/2013:18:11:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:18:12:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - csaba [03/May/2013:18:13:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - - [03/May/2013:18:15:49 +0200] "POST / HTTP/1.1" 200 154 Cancel-Subscription successful-ok
localhost - postas [03/May/2013:18:25:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:18:26:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - csaba [03/May/2013:18:27:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - postas [03/May/2013:18:39:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:18:40:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - csaba [03/May/2013:18:41:31 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - - [03/May/2013:18:48:17 +0200] "POST /printers/HP-LaserJet-P2015-Series HTTP/1.1" 200 428 Print-Job successful-ok
localhost - - [03/May/2013:18:48:17 +0200] "POST / HTTP/1.1" 200 255 Create-Printer-Subscription successful-ok
localhost - - [03/May/2013:18:48:35 +0200] "POST / HTTP/1.1" 200 155 Cancel-Subscription successful-ok
localhost - postas [03/May/2013:18:53:55 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - meszter [03/May/2013:18:54:03 +0200] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok

Lokálisan rendben tud nyomtatni, ezért gondolom a cups része rendben van. Windows kliensekről próbáltuk úgy is, hogy general-ra volt állítva a printer driver, a doksik szerint a samba így is érteni szokta a nyomtatási feladatokat legfeljebb nem lehet minden képességét kihasználni a nyomtatónak. Próbáltuk a nyomtató driverével is, egyekkel sem ment.

Ki fogom próbálni a disable 'spoolss = yes' 'no'-ra állításával is és leírom az eredményeket.