AC 5.3 CUP - combining digital signture in CUP WF process

Dear All,
We have a customer who wants to use digital signature in the WF approval process in the CUP.
Does anyone know if this can be done ?
Thanks
Yudit

Yudit,
   Right now, there is no way to use digital signature in CUP. I know many of my customers have also asked for this. There is a workaround to this and it is not exactly what customer needs but it might be helpful.
There is a functionality called approval reaffirm in CUP. If you open any workflow stage, the pane on the bottom says 'Additional Security Configuration'. If you turn 'Approve' and 'Reject' to 'Yes', this will ask every approver to login again.
Regards,
Alpesh

Similar Messages

  • Combining Digital OUT and Digital IN with DAQmx on E-Series

    Hi,
    I'm trying to combine Digital IN and OUT-function with the DAQmx-driver. I have set the first four channels of my E-Series to IN and the other four to OUT. How can I programm this? I encounter problems when changing an OUT-channel.
    Earlier I did that with the traditional DAQ driver by setting the port to 240 (first four In, second four OUT)
    Thanks for any help

    Hi,
    The easy way i know, is by configure Global Channels at the NI-Max and then use the Linked VI i send.I know it's a elementary VI, but u can continue from this point.
    Hope it helps ....
    Bush-Man
    Attachments:
    Read and Write Digital.vi ‏61 KB

  • Digital signature for work order processing

    Hi,
    Have anybody implemented digital signature for work order processing? Can you throw some lights,  what are the steps involved?
    Requirement is when work order reach certain status, like on order release, on partial confirmation, on final confirmation or on Technical completion, digital signature needs to be captured. This is a regulatory requirement.
    I read some threads that explains digital signature can be assigned to plant and order type combination, but i couldn't find this specifc config step, we are using ECC 6.0. Is anything needs to be activated before I can see these configuration steps.
    With ABAP help I was able link digital signature tool to work order, but was wondering if this can be achieved through configuration as mentioned in some of the threads.
    Also I have another requirement, like if you are doing a mass TECO using IW38 transaction, capture digital signature once and the same should be applied for all the selected work orders. Otherwise you have to enter your password as many time as the number of work order selected.
    Jaison

    Hi,
    Some information on operation sign-off available in [help|http://help.sap.com/erp2005_ehp_03/helpdata/EN/da/49d9c433ff4985b2484b7b911123cf/frameset.htm]
    -Paul

  • CUP v5.3 SP11.1 - CUP Request button "Existing Roles/Groups"

    Hi!
    Re: CUP v5.3 SP11.1 - CUP Request button "Existing Roles/Groups"
    Can anyone explain why some of our CUP users will see this CUP button in the CUP Request and others will not? Are they missing a UME "ACTION"?
    The button works fine, but it only shows up for some users and not others.
    Thanks for your help!
    -john

    Hello ,
    For Approvers , the button "Existing Roles /Groups" will be visible only when the following "stage" level setting is set
    Change Request Content = Yes
    Add Role =Yes .
    Regards
    -Ranjiv

  • How to combine Digital Graphs

    Hi,
    how to combine or merge the 1D array of digital waveform with a simple digital waveform. As givien in the attached VI, I want to display the datalines graph & control lines graph in a single digital waveform graph. 
    Thanks in advance
    Solved!
    Go to Solution.
    Attachments:
    Combine Graph.vi ‏10 KB

    Hi gurum,
    Well, you can use 'Build Array' to merge the 2 1D arrays and connect the output to the Digital Waveform Graph as shown below:
    Hope it helps
    Warmest regards,
    Lennard.C
    Learning new things everyday...

  • Combine digital waveform from two devices

    Hi All,
    We are using Logic Analyser to generate digital output from DUT and Sourcemeter to measure the current of this output at regular intervals. I am able to obtain the graphs for both from their VIs. Is there a way I can combine these two graphs taking time as x-axis ?
    Regards,
    Kanu

    Hi Kanu,
    I don't see any reason why not but we would need to know more about your setup and if post your code that would be a great help.
    Joe Daily
    National Instruments
    Applications Engineer
    may the G be with you ....

  • How to combine Digital Output, a delay and Analog Input in a fast loop

    I need to develop a process loop that runs at least at 250 Hz that performs a Digital output, than a delay of 50 microseconds and than an analog input of all the channels. All will be done using ATI MIO 64E3 card. Of course, the acquired data will be processed, displayed and saved. The loop will be running for several minutes until user stops it.

    The fastest and most precise timing will occur if you use hardware timing. You can apply hardware timing to analog input on the E Series boards, but not the digital lines. Let's focus on the analog input first. Continuous waveform scanning uses a scan clock, which can be the board's internal one or an external one which you apply. If you want to scan all the channels 50 microseconds after a digital rising edge, then you need an external signal to signify that scan clock.
    The E Series boards also have 2 counter/timers onboard that you can use for this purpose. You can set up a retriggerable pulse generation operation, where the counter receives a trigger and then on the user specifications, produces a pulse. You can have that route to the analog input scan clock.
    The trigger signal for the counter is that digital pulse. As I mentioned earlier, there is no hardware timing for the digital lines on an E Series board. We do have other digital boards (653x family) that have hardware timed operations if precision is important. If you are satisfied with software's resolution (in the milliseconds), then you can call the E Series board digital function in a loop with a software timer. That digital line can route to the counter to act as the trigger.
    So, on the programming side, you can have three separate and independent operations in parallel. One is for the digital function to output on that line every so often. Another is for the counter set at the retriggerable pulse generation. The last is for the analog input. I will describe this in terms of LabVIEW, but it can be done in a similar fashion with the NI-DAQ function calls or Measurement Studio.
    The digital examples are in the LabVIEW >> Examples >> Daq >> Digital >> E-Series directory. The Generate Retriggerable Pulse example is in the LabVIEW >> Examples >> Daq >> Counters >> DAQ-STC directory. The E Series boards use the DAQ-STC timing chip.
    Go to the LabVIEW >> Examples >> Daq >> anlogin >> strmdisk.llb directory and start with the Cont Acq to Spreadsheet File. This shows how to continuously acquire data and stream it to disk while displaying the data on a chart. Streaming to disk is the efficient way to save data while you are acquiring, as it eliminates the overhead of always opening and closing the file through the iterations of the loop. This saves to a file that can be opened by other applications (Excel, Word, etc.), but it is not as fast as writing to a binary file, which must be opened and read back through LabVIEW. However, for your ~250 Hz rate, it should be fine. Then, go to the LabVIEW >> Examples >> Daq >> anlogin >> anlogin.llb and look at the Acquire N Scans -ExtScanClk example. This shows how to apply the scan clock. Here, the AI Start that you saw in the previous example is replaced by 4 VIs (3 AI Clock Config's and the AI Control). Make those changes to the first example and then add a constant 0 to the AI Control parameter for total scans to acquire. That specifies the continuous operation. The File >> VI Properties >> Documentation menu item of the example describes the physical connections.
    If you aren't using LabVIEW, use the NI-DAQ User Manual and the NI-DAQ Help file installed on your machine. You can look at your AT E Series User Manual at the http://www.ni.com/manuals pages for more information on the hardware. Also, if you want to route those signals internally on the board, you can find some entries in the KnowledgeBase at the http://www.ni.com/support pages.
    Regards,
    Geneva L.
    Applications Engineering
    National Instruments
    http://www.ni.com/ask

  • How to combine digital shots in CS6 for a really long exposure

    Hello all,
    I want to make a really long-exposure shot using my Canon 40D DSLR.  If I just set the camera to Bulb and take a long exposure, I get a lot of noise that eventually wipes out the image.  I understand that you can achieve the equivalent of a long-exposure by combining several (many?) shorter exposures of the same scene.  This is routinely done in Astrophotography and other areas, but I don't know how to do it.  I tried googling some of the terms, but I guess I didn't use the right terminology because the search didn't turn up what I wanted.
    Can this be done in Photoshop, or do I need some other tool to accomplish this?
    I'm using CS6 on a Mac Mini with OSX 10.8.4.
    Thanks in advance for any help.
    Kevin H.

    kjhart0133 wrote:
    I tried googling some of the terms, but I guess I didn't use the right terminology because the search didn't turn up what I wanted.
    The term you want to look for is "dark frame subtraction".
    Your Canon 40D has a feature called Long Exposure Noise Reduction. As part of your Google searches you should research whether you need to turn off that feature if you are going to do dark frame subtraction manually.
    Sorry I can't be more detailed but I don't actually do much of this, I just remember reading about that stuff.

  • Digital Signatures - preserving throughout the process

    I have a form with 4 parts, each part requiring a digital signature.
    I just read the article on preserving digital signatures (http://www.adobe.com/devnet/livecycle/workflow/articles/lc_wf_preserve_digisig_tip.pdf), but I am still a little confused. Does this only work if I am sending the form as an email attachment (is that what the routes and attachments mean)?
    We want to do everything on-line (using pdf's)? We want part 1 user to fill out the form on-line, digital sign it, then it submit the form where it gets routed to part 2 user. So, is it possible for user 1 to type in the last name to look up user 2 and then selects user 2 - user gets an email with a URL to fill put part 2 on-line, but the digital signature from user 1 needs to be preserved. Then user 2 will digital sign the form and route to user 3.
    So, the basic question was, can we do all this on-line (using PDFs) or do we have to involve email attachments? I wouldn't think so, but I wanted to clarify.
    Thank you,
    Jennifer

    <[email protected]> ha scritto nel messaggio <br />news:[email protected]..<br />>I have a form with 4 parts, each part requiring a digital signature.<br />><br />> I just read the article on preserving digital signatures <br />> (http://www.adobe.com/devnet/livecycle/workflow/articles/lc_wf_preserve_digisig_tip.pdf), <br />> but I am still a little confused. Does this only work if I am sending the <br />> form as an email attachment (is that what the routes and attachments <br />> mean)?<br />><br />> We want to do everything on-line (using pdf's)? We want part 1 user to <br />> fill out the form on-line, digital sign it, then it submit the form where <br />> it gets routed to part 2 user. So, is it possible for user 1 to type in <br />> the last name to look up user 2 and then selects user 2 - user gets an <br />> email with a URL to fill put part 2 on-line, but the digital signature <br />> from user 1 needs to be preserved. Then user 2 will digital sign the form <br />> and route to user 3.<br />><br />> So, the basic question was, can we do all this on-line (using PDFs) or do <br />> we have to involve email attachments? I wouldn't think so, but I wanted to <br />> clarify.<br />><br /><br />I think that in your specific case, also the process via email would not <br />preserse digital signatures, because every step that required a new digsign <br />would change the hash value.<br /><br />Bye,<br />Alessio

  • Digital Signatures in multi step processes

    I have a form with several digital signatures, so I am passing the form around using a xfaForm variable. So, after user1 fills out the form, signs it and then send it back to the process. The process creates a task for user2 with the same form. If user2 opens the task in his workspace the signature of user1 is missing. I think I have to use another variable type for the form. But what type? I have played around with the different types but it comes always to errors. What type of variable should I use for the form? Or is there any example for such a process?
    I found one sample (http://www.adobe.com/devnet/livecycle/articles/preserve_dig_sig_multisteps.html) but it is for version 7.x
    Thanks in advance,
    Michael

    Jasmin,
    I have followed the directions you have above but I am receiving some sort of invocation error. Here is the error:
    ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:210)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:134)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:44)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:336)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:212)
    at sun.reflect.GeneratedMethodAccessor259.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:214)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:149)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:154)
    at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor. java:54)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:363)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
    at $Proxy171.doSupports(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:44)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:44)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:80)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:44)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:113)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:95)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:88)
    at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:21 0)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:57)
    at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    at com.adobe.workflow.engine.PEUtil.invokeAction(PEUtil.java:553)
    at com.adobe.workflow.engine.ProcessEngineBMTBean.continueBranchAtAction(ProcessEngineBMTBea n.java:2851)
    at com.adobe.workflow.engine.ProcessEngineBMTBean.asyncInvokeProcessCommand(ProcessEngineBMT Bean.java:634)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:214)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:149)
    at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor. java:54)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 58)
    at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:62)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:154)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
    at $Proxy204.asyncInvokeProcessCommand(Unknown Source)
    at com.adobe.workflow.engine.ProcessCommandControllerBean.doOnMessage(ProcessCommandControll erBean.java:145)
    at com.adobe.workflow.engine.ProcessCommandControllerBean.onMessage(ProcessCommandController Bean.java:94)
    at sun.reflect.GeneratedMethodAccessor516.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.j ava:475)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:149)
    at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterc eptor.java:101)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:94)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:389)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:1077)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerI nvoker.java:1379)
    at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:256)
    at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:904 )
    at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:160)
    at org.jboss.mq.SpySession.run(SpySession.java:333)
    at org.jboss.jms.asf.StdServerSession.run(StdServerSession.ja

  • CUP: Mapping LDAP field to CUP Accounting Number field

    Hello CUP Experts,
    I have encountered a problem with the LDAP field mapping that I simply can't figure out on my own.
    We have a field named employeeNumber in our LDAP system, I want that employeeNumber to end up in the CUP field named Accounting Number and eventually hoping that this data will end up in the corresponding Accounting Number field in the back-end user master field.
    - This Accounting Number field is visible in the back-end system in SU01D on the Logon data tab in section Other Data.
    In the LDAP Mapping I have mapped a CUP field named ACCOUNTNR to the LDAP employeeNumber under additional fields.
    Is the CUP field named something else than ACCOUNTNR in CUP?
    Does anyone know of a solution to this problem or a similar problem?
    Thanks in advance,
    Stefan Ericsson
    +358-50-4867527

    Hi Stefan!
    Which issue exactly are you trying to solve:
    1. The LDAP field goes into the CUP request, but not into SU01
    2. The LDAP field does not even show up in CUP
    1) can be solved by maintaining Configuration - Field Mapping - Provisioning
    2) should work as you did it, alternatively you might be able to use a custom field (CAREFUL! once you use a custome field you'll never get it out of CUP again!)
    Kind regards,
    Frank.

  • How to create Digital Personnel Foile for HCM Processes and Forms

    Hi I am creating HCM Processes and Forms using FPM Forms. Now to print these forms Alternate Adobe forms also developed. But once the entire process is completed by HR Admin and in future if they want to see the already processed form and if they want to take print out they should be able to do it. So, based on some knowledge I am assuming we can achieve this by Digital Personnel file creation. Can any one please confirm. Whether they can open already processed form and how to get print these forms as this is FPM form and no print option is available.
    In order to configure DPF, can any one share step by step procedure to configure DPF. I dont have any idea on SAP Records Management as I felt this basic is required. Friends help me here.
    Regards,
    Nayani.

    This seems possible.
    Refer here ... Print Form (FPM Form Type Only) - HCM Processes and Forms - SAP Library
    For DPF - ensure you have used the anchor correctly refer Save PDF file added to processes and forms WDA
    Regarding the possibility of being able to print it from process browser - I am not sure.
    Process browser for latest release is documented here...
    http://help.sap.com/erp_hcm_ias_2013_02/helpdata/en/14/9a3516789f4aceb6bb910df1220869/content.htm?frameset=/en/43/1d639b3fce3566e10000000a11466f/frameset.htm
    Regards.

  • MTO material - Combine three planned orders into one process order

    Hi Gurus,
    Does anyone know if and how I can convert three planned orders of the same material into one process order?
    So:
    1.
    Sales order 1 (material X) --> generates Planned order 1
    Sales order 2 (material X) --> generates Planned order 2
    Sales order 3 (material X) --> generates Planned order 3
    2.
    Process orders 1,2,3 (material X) --> Process order 1
    3.
    Process order 1 --> reserved sales order stock for sales orders 1,2 and 3

    M,
    One process order cannot create Sales Order Stock for three different sales order items.  A single process order can produce Sales order stock for AT MOST 1 sales order/item.
    This scenario can be achieved under a Make to Stock environment, where the production order creates 'generic' stock (not sales order specific).
    Best Regards,
    DB49

  • Combine MIGO and VL31N in inbound process

    Hellow!
    I want to use  "Goods receipt blocked stock"  to process low quality goods  during inbound process.
    We use "good receipt whith inbound delivery  in WMS" scenario to recive goods from vendor.
    I have not found a way to use "Goods receipt blocked stock" in delivery processing (vl31n). Only using  MIGO.
    Is it possible to use VL31N and post GR from delivery for good materials and MIGO to send low quality materil into  "Goods receipt blocked stock" ?
    Thanks  for answers.
    Andrey Garshin.

    Hi,
    Miantenance  of GR blocked stock with IM and WM is... Do MIGO with 103Mvt type . TO will get created automatically. Hence destination will be known. Putaway the stock and confirm the TO  in WMS.
    If you want to maintain GR blocked stock DIRECTLY in WMS....
    Do GR with 103 Mvt type and post the stock to quality insoection. A fter QI release the stock from QI. Transfer the stock from Qualito to unrestricted.
    If you want to maintain low valuated materila as GR blocked stock. Please create one storage type for GR blocked stock and post the stock to that particular storage type. I hope this will resolve your issue. Thanking you.

  • [SOLVED] Cups problems - Can't print (Epson DX7450)

    Edit: It's all good since libcups 1.3.10 except Firefox can't print for some reason, but I'm willing to let that one go
    Note: Already posted this in Newbie Corner before I realised it belonged here. There it is marked [SOLVED-MOVED] with a note. Sorry for redundancy...
    Hello,
    I am having some problems with cups. I am using gutenprint drivers from the repo, and am able to set everything up nicely (so it seems). When trying to print, nothing happens. The job queue displays the job with the status "Stopped". I have found some people have similar problems (not the same though), and a rebuild of libcups was recommended. I tried that, and the problems remained the same.
    Upon inspection of the logs the following is found:
    /var/log/cups/error_log (output from restarting cups, to failed job)
    I [09/Apr/2009:08:31:20 +0200] Scheduler shutting down normally.
    D [09/Apr/2009:08:31:20 +0200] Saving remote.cache...
    I [09/Apr/2009:08:31:20 +0200] Saving job cache file "/var/cache/cups/job.cache"...
    I [09/Apr/2009:08:31:21 +0200] Listening to 127.0.0.1:631 (IPv4)
    I [09/Apr/2009:08:31:21 +0200] Loaded configuration file "/etc/cups/cupsd.conf"
    I [09/Apr/2009:08:31:21 +0200] Using default TempDir of /var/spool/cups/tmp...
    I [09/Apr/2009:08:31:21 +0200] Configured for up to 100 clients.
    I [09/Apr/2009:08:31:21 +0200] Allowing up to 100 client connections per host.
    I [09/Apr/2009:08:31:21 +0200] Using policy "default" as the default!
    I [09/Apr/2009:08:31:21 +0200] Full reload is required.
    I [09/Apr/2009:08:31:21 +0200] Loaded MIME database from '/etc/cups': 36 types, 41 filters...
    D [09/Apr/2009:08:31:21 +0200] Loading printer tintopljuvach...
    I [09/Apr/2009:08:31:21 +0200] Loading job cache file "/var/cache/cups/job.cache"...
    D [09/Apr/2009:08:31:21 +0200] [Job 56] Loading from cache...
    D [09/Apr/2009:08:31:21 +0200] [Job 56] Loading attributes...
    I [09/Apr/2009:08:31:21 +0200] Full reload complete.
    I [09/Apr/2009:08:31:21 +0200] Cleaning out old temporary files in "/var/spool/cups/tmp"...
    I [09/Apr/2009:08:31:21 +0200] Listening to 127.0.0.1:631 on fd 3...
    I [09/Apr/2009:08:31:21 +0200] Resuming new connection processing...
    D [09/Apr/2009:08:31:21 +0200] Discarding unused server-started event...
    D [09/Apr/2009:08:31:22 +0200] Report: clients=0
    D [09/Apr/2009:08:31:22 +0200] Report: jobs=1
    D [09/Apr/2009:08:31:22 +0200] Report: jobs-active=1
    D [09/Apr/2009:08:31:22 +0200] Report: printers=1
    D [09/Apr/2009:08:31:22 +0200] Report: printers-implicit=0
    D [09/Apr/2009:08:31:22 +0200] Report: stringpool-string-count=397
    D [09/Apr/2009:08:31:22 +0200] Report: stringpool-alloc-bytes=8896
    D [09/Apr/2009:08:31:22 +0200] Report: stringpool-total-bytes=7888
    D [09/Apr/2009:08:48:56 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:48:56 +0200] [Job 56] Unloading...
    D [09/Apr/2009:08:48:56 +0200] Report: clients=1
    D [09/Apr/2009:08:48:56 +0200] Report: jobs=1
    D [09/Apr/2009:08:48:56 +0200] Report: jobs-active=1
    D [09/Apr/2009:08:48:56 +0200] Report: printers=1
    D [09/Apr/2009:08:48:56 +0200] Report: printers-implicit=0
    D [09/Apr/2009:08:48:56 +0200] Report: stringpool-string-count=360
    D [09/Apr/2009:08:48:56 +0200] Report: stringpool-alloc-bytes=8032
    D [09/Apr/2009:08:48:56 +0200] Report: stringpool-total-bytes=7080
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Classes
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Default
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Default client-error-not-found: No default printer
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=406 (client-error-not-found)
    D [09/Apr/2009:08:48:56 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:48:56 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Classes
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Default
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Default client-error-not-found: No default printer
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=406 (client-error-not-found)
    D [09/Apr/2009:08:48:56 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:48:56 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Classes
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Default
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Default client-error-not-found: No default printer
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=406 (client-error-not-found)
    D [09/Apr/2009:08:48:56 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:48:56 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Classes
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:56 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:56 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Default
    D [09/Apr/2009:08:48:56 +0200] CUPS-Get-Default client-error-not-found: No default printer
    D [09/Apr/2009:08:48:56 +0200] cupsdProcessIPPRequest: 7 status_code=406 (client-error-not-found)
    D [09/Apr/2009:08:48:56 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:48:57 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:48:57 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:57 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:57 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:48:57 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:57 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:57 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:57 +0200] CUPS-Get-Classes
    D [09/Apr/2009:08:48:57 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:57 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:57 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:57 +0200] CUPS-Get-Default
    D [09/Apr/2009:08:48:57 +0200] CUPS-Get-Default client-error-not-found: No default printer
    D [09/Apr/2009:08:48:57 +0200] cupsdProcessIPPRequest: 7 status_code=406 (client-error-not-found)
    D [09/Apr/2009:08:48:57 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:48:57 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:48:57 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:57 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:57 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:48:57 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:57 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:57 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:57 +0200] CUPS-Get-Classes
    D [09/Apr/2009:08:48:57 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:48:57 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:48:57 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:48:57 +0200] CUPS-Get-Default
    D [09/Apr/2009:08:48:57 +0200] CUPS-Get-Default client-error-not-found: No default printer
    D [09/Apr/2009:08:48:57 +0200] cupsdProcessIPPRequest: 7 status_code=406 (client-error-not-found)
    D [09/Apr/2009:08:48:57 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:49:11 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:11 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:49:11 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:11 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:49:11 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:49:11 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:49:11 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:11 +0200] CUPS-Get-Classes
    D [09/Apr/2009:08:49:11 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:49:11 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:49:11 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:11 +0200] CUPS-Get-Default
    D [09/Apr/2009:08:49:11 +0200] CUPS-Get-Default client-error-not-found: No default printer
    D [09/Apr/2009:08:49:11 +0200] cupsdProcessIPPRequest: 7 status_code=406 (client-error-not-found)
    D [09/Apr/2009:08:49:11 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:49:11 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:11 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:49:11 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:11 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:49:11 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:49:11 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:49:11 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:11 +0200] CUPS-Get-Classes
    D [09/Apr/2009:08:49:11 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:49:11 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:49:11 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:11 +0200] CUPS-Get-Default
    D [09/Apr/2009:08:49:11 +0200] CUPS-Get-Default client-error-not-found: No default printer
    D [09/Apr/2009:08:49:11 +0200] cupsdProcessIPPRequest: 7 status_code=406 (client-error-not-found)
    D [09/Apr/2009:08:49:11 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:49:11 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:11 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:49:11 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:12 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:49:12 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:12 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:49:12 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:49:12 +0200] cupsdAcceptClient: 9 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:12 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:49:12 +0200] cupsdReadClient: 9 GET /printers/tintopljuvach.ppd HTTP/1.1
    D [09/Apr/2009:08:49:12 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:12 +0200] cupsdCloseClient: 9
    D [09/Apr/2009:08:49:14 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:17 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:49:17 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:17 +0200] cupsdReadClient: 7 POST / HTTP/1.1
    D [09/Apr/2009:08:49:17 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:17 +0200] CUPS-Get-Printers
    D [09/Apr/2009:08:49:17 +0200] cupsdProcessIPPRequest: 7 status_code=0 (successful-ok)
    D [09/Apr/2009:08:49:17 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:49:20 +0200] cupsdAcceptClient: 7 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:21 +0200] cupsdAcceptClient: 9 from localhost:631 (IPv4)
    D [09/Apr/2009:08:49:21 +0200] cupsdReadClient: 9 POST /printers/tintopljuvach HTTP/1.1
    D [09/Apr/2009:08:49:21 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Apr/2009:08:49:22 +0200] Print-Job ipp://localhost:631/printers/tintopljuvach
    D [09/Apr/2009:08:49:22 +0200] [Job ???] Auto-typing file...
    I [09/Apr/2009:08:49:22 +0200] [Job ???] Request file type is application/postscript.
    D [09/Apr/2009:08:49:22 +0200] add_job: requesting-user-name="tajana"
    I [09/Apr/2009:08:49:22 +0200] [Job 57] Adding start banner page "none".
    D [09/Apr/2009:08:49:22 +0200] Discarding unused job-created event...
    I [09/Apr/2009:08:49:22 +0200] [Job 57] Adding end banner page "none".
    I [09/Apr/2009:08:49:22 +0200] [Job 57] File of type application/postscript queued by "tajana".
    D [09/Apr/2009:08:49:22 +0200] [Job 57] hold_until=0
    I [09/Apr/2009:08:49:22 +0200] [Job 57] Queued on "tintopljuvach" by "tajana".
    D [09/Apr/2009:08:49:22 +0200] Discarding unused printer-state-changed event...
    D [09/Apr/2009:08:49:22 +0200] [Job 57] job-sheets=none,none
    D [09/Apr/2009:08:49:22 +0200] [Job 57] banner_page = 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] argv[0]="tintopljuvach"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] argv[1]="57"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] argv[2]="tajana"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] argv[3]="Net.hr webcafe"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] argv[4]="1"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] argv[5]="StpFineCyanBalance=None StpFineContrast=None ColorModel=RGB number-up=1 StpDropSize1=None StpDropSize2=None StpFineBlackGamma=None StpFineBlackTrans=None MediaType=Plain StpDropSize3=None StpFineInkLimit=None StpContrast=None StpSaturation=None StpGamma=None StpFineMagentaDensity=None StpQuality=Standard StpBrightness=None StpFineGamma=None StpInkSet=None StpFineMagentaBalance=None StpiShrinkOutput=Shrink StpFineBlackDensity=None noStpFullBleed StpInkLimit=None StpInkType=None StpFineDropSize1=None StpFineDropSize2=None StpFineDropSize3=None StpColorPrecision=Normal StpCyanGamma=None StpFineGCRUpper=None StpMagentaGamma=None StpFineGCRLower=None Resolution=361x360dpi StpDensity=None StpImageType=TextGraphics PageSize=Letter StpBlackGamma=None StpFineYellowDensity=None StpFineCyanGamma=None StpBlackTrans=None StpDitherAlgorithm=None StpYellowDensity=None StpColorCorrection=None StpCyanDensity=None StpGCRLower=None StpYellowGamma=None StpGCRUpper=None StpMagentaDensity=None StpBlackDensity=None StpCyanBalance=None StpFeedSequence=None StpFineSaturation=None StpFineBrightness=None StpFineYellowBalance=None StpYellowBalance=None StpPrintingDirection=None StpFineCyanDensity=None StpMagentaBalance=None noStpLinearContrast StpFineYellowGamma=None StpFineDensity=None StpWeave=None StpFineMagentaGamma=None job-uuid=urn:uuid:ea8d101d-aae9-3002-4d02-ef1ddc497806"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] argv[6]="/var/spool/cups/d00057-001"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[1]="CUPS_DATADIR=/usr/share/cups"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[6]="CUPS_SERVERROOT=/etc/cups"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[7]="CUPS_STATEDIR=/var/run/cups"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[8]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[9]="SERVER_ADMIN=root@raketa"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[10]="SOFTWARE=CUPS/1.3.9"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[11]="TMPDIR=/var/spool/cups/tmp"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[12]="USER=root"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[13]="CUPS_SERVER=localhost"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[14]="CUPS_ENCRYPTION=IfRequested"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[15]="IPP_PORT=631"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[16]="CHARSET=utf-8"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[17]="LANG=en_US.UTF8"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[18]="PPD=/etc/cups/ppd/tintopljuvach.ppd"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[19]="RIP_MAX_CACHE=8m"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[20]="CONTENT_TYPE=application/postscript"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[21]="DEVICE_URI=usb://EPSON/Stylus%20DX7400"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[22]="PRINTER=tintopljuvach"
    D [09/Apr/2009:08:49:22 +0200] [Job 57] envp[23]="FINAL_CONTENT_TYPE=printer/tintopljuvach"
    I [09/Apr/2009:08:49:22 +0200] [Job 57] Started filter /usr/lib/cups/filter/pstops (PID 370)
    I [09/Apr/2009:08:49:22 +0200] [Job 57] Started filter /usr/lib/cups/filter/pstoraster (PID 371)
    I [09/Apr/2009:08:49:22 +0200] [Job 57] Started filter /usr/lib/cups/filter/rastertogutenprint.5.2 (PID 372)
    I [09/Apr/2009:08:49:22 +0200] [Job 57] Started backend /usr/lib/cups/backend/usb (PID 373)
    D [09/Apr/2009:08:49:22 +0200] Discarding unused job-state-changed event...
    D [09/Apr/2009:08:49:22 +0200] cupsdProcessIPPRequest: 9 status_code=0 (successful-ok)
    D [09/Apr/2009:08:49:22 +0200] cupsdCloseClient: 9
    E [09/Apr/2009:08:49:22 +0200] [Job 57] Unable to open file "/var/spool/cups/d00057-001" - Permission denied
    D [09/Apr/2009:08:49:22 +0200] Discarding unused printer-state-changed event...
    E [09/Apr/2009:08:49:22 +0200] PID 370 (/usr/lib/cups/filter/pstops) stopped with status 1!
    D [09/Apr/2009:08:49:22 +0200] Discarding unused printer-state-changed event...
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Printer using device file "/dev/usblp1"...
    D [09/Apr/2009:08:49:22 +0200] Discarding unused printer-state-changed event...
    D [09/Apr/2009:08:49:22 +0200] [Job 57] backendRunLoop(print_fd=0, device_fd=5, use_bc=1, side_cb=0x804a930)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint 5.2.3 Starting
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint command line: tintopljuvach '57' 'tajana' 'Net.hr webcafe' '1' <args>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint using PPD file /etc/cups/ppd/tintopljuvach.ppd
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option count is 65 (1373 bytes)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 0 StpFineCyanBalance = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 1 StpFineContrast = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 2 ColorModel = RGB
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 3 number-up = 1
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 4 StpDropSize1 = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 5 StpDropSize2 = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 6 StpFineBlackGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 7 StpFineBlackTrans = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 8 MediaType = Plain
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 9 StpDropSize3 = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 10 StpFineInkLimit = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 11 StpContrast = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 12 StpSaturation = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 13 StpGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 14 StpFineMagentaDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 15 StpQuality = Standard
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 16 StpBrightness = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 17 StpFineGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 18 StpInkSet = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 19 StpFineMagentaBalance = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 20 StpiShrinkOutput = Shrink
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 21 StpFineBlackDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 22 StpFullBleed = false
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 23 StpInkLimit = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 24 StpInkType = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 25 StpFineDropSize1 = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 26 StpFineDropSize2 = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 27 StpFineDropSize3 = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 28 StpColorPrecision = Normal
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 29 StpCyanGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 30 StpFineGCRUpper = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 31 StpMagentaGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 32 StpFineGCRLower = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 33 Resolution = 361x360dpi
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 34 StpDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 35 StpImageType = TextGraphics
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 36 PageSize = Letter
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 37 StpBlackGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 38 StpFineYellowDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 39 StpFineCyanGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 40 StpBlackTrans = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 41 StpDitherAlgorithm = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 42 StpYellowDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 43 StpColorCorrection = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 44 StpCyanDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 45 StpGCRLower = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 46 StpYellowGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 47 StpGCRUpper = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 48 StpMagentaDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 49 StpBlackDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 50 StpCyanBalance = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 51 StpFeedSequence = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 52 StpFineSaturation = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 53 StpFineBrightness = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 54 StpFineYellowBalance = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 55 StpYellowBalance = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 56 StpPrintingDirection = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 57 StpFineCyanDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 58 StpMagentaBalance = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 59 StpLinearContrast = false
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 60 StpFineYellowGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 61 StpFineDensity = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 62 StpWeave = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 63 StpFineMagentaGamma = None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: CUPS option 64 job-uuid = urn:uuid:ea8d101d-aae9-3002-4d02-ef1ddc497806
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Driver Epson Stylus DX7450
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Using fd 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Running /usr/bin/gs -dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH -dNOMEDIAATTRS -sDEVICE=cups -sstdout=%stderr -sOUTPUTFILE=%stdout -c -_
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set options:
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set string Quality to Standard
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set special string Quality to Standard
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting PageSize to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting MediaType to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting InputSlot to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting Duplex to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CDInnerRadius to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CDOuterDiameter to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CDInnerDiameter to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CDXAdjustment to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CDYAdjustment to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting Resolution to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set string InkType to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set special string InkType to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting UseGloss to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set string InkSet to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set special string InkSet to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set string PrintingDirection to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set special string PrintingDirection to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set bool FullBleed to false (0)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set string Weave to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set special string Weave to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting OutputOrder to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting AlignmentPasses to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting AlignmentChoices to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting InkChange to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting AlternateAlignmentPasses to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting AlternateAlignmentChoices to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting SupportsPacketMode to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting InterchangeableInk to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting InkChannels to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting ChannelNames to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting PrintingMode to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting RawChannels to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CyanHueCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting MagentaHueCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting YellowHueCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting BlueHueCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting OrangeHueCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting RedHueCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_max_hres to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_max_vres to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_min_hres to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_min_vres to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_nozzles to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_black_nozzles to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_fast_nozzles to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_min_nozzles to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_min_black_nozzles to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_min_fast_nozzles to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_nozzle_start to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_black_nozzle_start to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_fast_nozzle_start to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_nozzle_separation to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_black_nozzle_separation to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_fast_nozzle_separation to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_separation_rows to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_max_paper_width to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_max_paper_height to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_min_paper_width to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_min_paper_height to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_max_imageable_width to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_max_imageable_height to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_extra_feed to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_pseudo_separation_rows to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_base_separation to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_resolution_scale to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_initial_vertical_offset to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_black_initial_vertical_offset to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_max_black_resolution to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_zero_margin_offset to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_extra_720dpi_separation to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_micro_left_margin to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_min_horizontal_position_alignment to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_base_horizontal_position_alignment to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_bidirectional_upper_limit to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_physical_channels to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_left_margin to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_right_margin to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_top_margin to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_bottom_margin to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_ink_type to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_bits to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_base_res to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_alignment_passes to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_alignment_choices to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_alternate_alignment_passes to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_alternate_alignment_choices to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_cd_x_offset to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_cd_y_offset to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_cd_page_width to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_cd_page_height to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_paper_extra_bottom to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_preinit_sequence to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_preinit_remote_sequence to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_postinit_remote_sequence to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting escp2_vertical_borderless_sequence to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting PaperThickness to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting VacuumIntensity to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting FeedSequence to 'None'
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting PrintMethod to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting PlatenGap to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting FeedAdjustment to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set string ColorCorrection to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set special string ColorCorrection to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting ChannelBitDepth to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting InputImageType to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting STPIOutputType to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting STPIRawChannels to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting SimpleGamma to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set bool LinearContrast to false (0)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting LUTDumpFile to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CyanCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting MagentaCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting YellowCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting BlackCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting RedCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting GreenCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting BlueCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting WhiteCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting HueMap to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting SatMap to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting LumMap to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting GCRCurve to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh0 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh1 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh2 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh3 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh4 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh5 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh6 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh7 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh8 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh9 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh10 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh11 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh12 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh13 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh14 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh15 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh16 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh17 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh18 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh19 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh20 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh21 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh22 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh23 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh24 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh25 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh26 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh27 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh28 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh29 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh30 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting CurveCh31 to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set string DitherAlgorithm to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set special string DitherAlgorithm to None
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set string ImageType to TextGraphics
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Set special string ImageType to TextGraphics
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting JobMode to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Not setting PageNumber to (null)
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: End options
    D [09/Apr/2009:08:49:22 +0200] [Job 57] START 0 1462260 166498 1301440 12920 true 532 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END PROCS 10 1462260 181346 1301440 14288 true 654 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_std_e.ps 10 1502452 202254 1301440 15664 true 662 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_il1_e.ps 10 1522548 213149 1301440 15664 true 663 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END FONTDIR/ENCS 10 1522548 213301 1301440 15664 true 665 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END DEVS 10 1528800 233312 1301440 15664 true 669 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END STATD 10 1548896 251999 1301440 17276 true 674 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END GS_FONTS 10 1589088 291652 1301440 17276 true 722 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END BASIC COLOR 10 1589088 300518 1301440 17276 true 743 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END IMAGE 10 1609184 315832 1301440 17276 true 748 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_btokn.ps 10 1629280 328353 1301440 17276 true 752 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_dps1.ps 10 1629280 335018 1301440 17276 true 754 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_dps2.ps 10 1629280 342648 1301440 17276 true 755 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_type1.ps 10 1649376 353140 1301440 17276 true 762 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_lev2.ps 10 1669472 379070 1397540 113772 true 768 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] BEGIN RESOURCES 10 1706332 404090 1397540 113772 true 768 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END CATEGORY 10 1706332 405625 1397540 113928 true 769 5 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END GENERIC 10 1716172 420201 1397540 113928 true 771 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END FIXED 10 1736268 428925 1397540 113928 true 771 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END MISC 10 1736268 433335 1397540 113928 true 771 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END ENCODING 10 1736268 435177 1397540 113928 true 771 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_resmp.ps 10 1756364 452952 1397540 113928 true 775 3 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_res.ps 10 1739600 436159 1397540 113928 true 775 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_typ42.ps 10 1739600 441492 1397540 113928 true 778 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_cidfn.ps 20 1779792 486739 1397540 113928 true 786 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_cidcm.ps 20 1809728 511449 1397540 113928 true 786 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_fntem.ps 20 1910208 612716 1397540 114024 true 788 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_cidtt.ps 20 1930304 627477 1397540 114024 true 788 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_cidfm.ps 20 1950400 642070 1397540 114024 true 788 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_cmap.ps 20 1950400 653143 1397540 114024 true 793 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_setpd.ps 20 1990592 673116 1397540 114024 true 793 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_typ32.ps 20 1990592 679094 1397540 114024 true 791 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_frsd.ps 20 1990592 684597 1397540 114024 true 791 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_ll3.ps 20 2010688 706600 1397540 114024 true 792 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_mex_e.ps 20 2010688 713699 1397540 114024 true 792 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_mro_e.ps 20 2030784 722531 1397540 114024 true 792 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_pdf_e.ps 20 2030784 728039 1397540 114024 true 792 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_wan_e.ps 30 2030784 733524 1397540 114024 true 792 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] pdf_ops.ps 30 2070976 756184 1397540 114024 true 792 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_l2img.ps 30 2070976 762727 1397540 114024 true 795 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] pdf_rbld.ps 30 2070976 770525 1397540 114024 true 807 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] pdf_base.ps 30 2111168 795989 1397540 114024 true 1005 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] pdf_draw.ps 40 2151360 838687 1397540 114024 true 1005 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] pdf_font.ps 40 2191552 869762 1397540 114420 true 1006 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] pdf_main.ps 40 2211648 903281 1397540 114420 true 1012 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] pdf_sec.ps 40 2231744 915965 1397540 114420 true 1012 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_css_e.ps 40 2231744 921701 1397540 114420 true 1012 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_cff.ps 40 2292032 960411 1397540 114420 true 1014 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_mgl_e.ps 40 2292032 966262 1397540 114420 true 1014 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_agl.ps 40 2361700 1030705 1397540 114420 true 1015 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: cannot insert /Euro @ 219 used for /currency
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /infinity @ 176
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /notequal @ 173
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /product @ 184
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /approxequal @ 197
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /apple @ 240
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /lozenge @ 215
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /radical @ 195
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /Omega @ 189
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /pi @ 185
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /summation @ 183
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /partialdiff @ 182
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /Delta @ 198
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /greaterequal @ 179
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /lessequal @ 178
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Extend MacRomanEncodingForTrueType for TrueType: insert /integral @ 186
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_ttf.ps 40 2450408 1119485 1397540 114420 true 1049 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_icc.ps 40 2450408 1125621 1397540 114420 true 1050 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_dps.ps 40 2450408 1132087 1397540 114638 true 1063 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_dpnxt.ps 40 2470504 1141082 1397540 114638 true 1080 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_epsf.ps 40 2470504 1149252 1397540 114638 true 1092 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_fapi.ps 40 2490600 1159942 1397540 114638 true 1092 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] gs_pdfwr.ps 40 2510696 1184709 1397540 116200 true 1124 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END INITFILES 50 2530792 1191518 1397540 116200 true 1152 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] ./Fontmap 50 2530792 1193335 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /usr/share/cups/fonts/Fontmap 50 2530792 1195664 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] %rom%Resource/Init/Fontmap 50 2530792 1197990 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] %rom%lib/Fontmap 50 2591080 1242485 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /usr/share/ghostscript/8.64/Resource/Init/Fontmap 50 2591080 1242534 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /usr/share/ghostscript/8.64/lib/Fontmap 50 2611176 1263671 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /usr/share/ghostscript/8.64/Resource/Font/Fontmap 50 2611176 1266008 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /usr/share/ghostscript/fonts/Fontmap 50 2611176 1268344 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /usr/share/fonts/Type1/Fontmap 50 2611176 1270674 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /usr/share/fonts/Fontmap 50 2631272 1276326 1417636 120322 true 1153 4 <1>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END FONTS 50 2631272 1278687 1417636 120322 true 1153 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] num_components = 1, depth = 1
    D [09/Apr/2009:08:49:22 +0200] [Job 57] cupsColorSpace = 3, cupsColorOrder = 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] cupsBitsPerPixel = 1, cupsBitsPerColor = 1
    D [09/Apr/2009:08:49:22 +0200] [Job 57] max_gray = 1, dither_grays = 2
    D [09/Apr/2009:08:49:22 +0200] [Job 57] max_color = 0, dither_colors = 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] num_components = 1, depth = 1
    D [09/Apr/2009:08:49:22 +0200] [Job 57] cupsColorSpace = 3, cupsColorOrder = 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] cupsBitsPerPixel = 1, cupsBitsPerColor = 1
    D [09/Apr/2009:08:49:22 +0200] [Job 57] max_gray = 1, dither_grays = 2
    D [09/Apr/2009:08:49:22 +0200] [Job 57] max_color = 0, dither_colors = 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END DEVICE 60 2952808 1600865 1416292 118978 true 1153 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END CONFIG 60 2952808 1601003 1416292 118978 true 1153 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Checking.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Merging.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Selecting.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Constructing.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Putting.
    D [09/Apr/2009:08:49:22 +0200] [612.0 792.0]
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /.MediaSize
    D [09/Apr/2009:08:49:22 +0200] [Job 57] 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /%MediaSource
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /.LockSafetyParams
    D [09/Apr/2009:08:49:22 +0200] [Job 57] 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] /%MediaDestination
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -device-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] num_components = 1, depth = 1
    D [09/Apr/2009:08:49:22 +0200] [Job 57] cupsColorSpace = 3, cupsColorOrder = 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] cupsBitsPerPixel = 1, cupsBitsPerColor = 1
    D [09/Apr/2009:08:49:22 +0200] [Job 57] max_gray = 1, dither_grays = 2
    D [09/Apr/2009:08:49:22 +0200] [Job 57] max_color = 0, dither_colors = 0
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Updating PageSize to [612 792]...
    D [09/Apr/2009:08:49:22 +0200] [Job 57] size = Letter
    D [09/Apr/2009:08:49:22 +0200] [Job 57] margins[] = [ 0.000000 0.000000 0.000000 0.000000 ]
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Result of putting.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] false
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -device-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Installing.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] false
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -device-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Finishing.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -mark-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] -dict-
    D [09/Apr/2009:08:49:22 +0200] [Job 57] true
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END INIT 60 3013096 1663393 4693788 3406774 true 1163 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END GLOBAL 60 3013096 1664569 4693788 3407180 false 1162 4 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] END GC 70 2751952 958158 4693788 3407234 false 1147 3 <0>
    D [09/Apr/2009:08:49:22 +0200] [Job 57] runEPS: Short non-DSC
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: About to start printing loop.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Printed total 0 bytes
    D [09/Apr/2009:08:49:22 +0200] [Job 57] Gutenprint: Used 0.050 seconds user, 0.000 seconds system, 0.701 seconds elapsed
    D [09/Apr/2009:08:49:22 +0200] PID 371 (/usr/lib/cups/filter/pstoraster) exited with no errors.
    D [09/Apr/2009:08:49:22 +0200] PID 372 (/usr/lib/cups/filter/rastertogutenprint.5.2) exited with no errors.
    D [09/Apr/2009:08:49:22 +0200] PID 373 (/usr/lib/cups/backend/usb) exited with no errors.
    D [09/Apr/2009:08:49:22 +0200] [Job 57] File 0 is complete.
    E [09/Apr/2009:08:49:22 +0200] [Job 57] Job stopped due to filter errors.
    D [09/Apr/2009:08:49:22 +0200] Discarding unused printer-state-changed event...
    D [09/Apr/2009:08:49:22 +0200] Discarding unused job-stopped event...
    D [09/Apr/2009:08:49:23 +0200] [Job 57] Unloading...
    D [09/Apr/2009:08:54:21 +0200] Closing client 7 after 300 seconds of inactivity...
    D [09/Apr/2009:08:54:21 +0200] cupsdCloseClient: 7
    D [09/Apr/2009:08:54:21 +0200] Report: clients=0
    D [09/Apr/2009:08:54:21 +0200] Report: jobs=2
    D [09/Apr/2009:08:54:21 +0200] Report: jobs-active=2
    D [09/Apr/2009:08:54:21 +0200] Report: printers=1
    D [09/Apr/2009:08:54:21 +0200] Report: printers-implicit=0
    D [09/Apr/2009:08:54:21 +0200] Report: stringpool-string-count=407
    D [09/Apr/2009:08:54:21 +0200] Report: stringpool-alloc-bytes=8160
    D [09/Apr/2009:08:54:21 +0200] Report: stringpool-total-bytes=8376
    This particular line caught my attention:
    E [09/Apr/2009:08:49:22 +0200] [Job 57] Unable to open file "/var/spool/cups/d00057-001" - Permission denied
    I checked the folder:
    total 1524
    drwx--x---+ 3 root lp 4096 2009-04-09 08:49 .
    drwxr-xr-x+ 6 root root 4096 2009-04-07 22:40 ..
    -rw-------+ 1 root lp 780 2009-04-07 23:23 c00056
    -rw-------+ 1 root lp 2306 2009-04-09 08:49 c00057
    -rw-r-----+ 1 root lp 17363 2009-04-07 23:23 d00056-001
    -rw-r-----+ 1 root lp 1485136 2009-04-09 08:49 d00057-001
    drwxrwx--T+ 2 root lp 4096 2009-04-07 23:23 tmp
    Then i tried setting the file permissions to 777, for the tests sake, and also the parent folder, but everytime a new job is queued, the permissions revert to the ones shown.
    I was able to use this printer before in other distros and FreeBSD. After days of trying out different combinations, I am about to give up.  Unless someone has some ideas... Anyone?
    Last edited by vexxor (2009-04-22 14:40:53)

    SIGTERMer wrote:a simple question..
    did you add your self to lp?
    (as root) "passwd -a username lp"
    Yeah i did. Also tried printing as root.

Maybe you are looking for