~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

« back to all changes in this revision

Viewing changes to kleopatra/uiserver/sign

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-06-28 19:33:24 UTC
  • mfrom: (0.2.13) (0.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20110628193324-8yvjs8sdv9rdoo6c
Tags: 4:4.7.0-0ubuntu1
* New upstream release
  - update install files
  - add missing kdepim-doc package to control file
  - Fix Vcs lines
  - kontact breaks/replaces korganizer << 4:4.6.80
  - tighten the dependency of kdepim-dev on libkdepim4 to fix lintian error

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
#
 
3
# This is test script 2/3 for email sign/encrypt operation on Unix.
 
4
#
 
5
# See prep-encrypt for instructions.
 
6
 
 
7
rm -rf test.data
 
8
echo "Hello, World" > test.data
 
9
exec gpg-connect-agent -S ~/.gnupg/S.uiserver --run <(cat <<'BYE'
 
10
/subst
 
11
/serverpid
 
12
session 123 Re: Letter received
 
13
/sendfd test.data r
 
14
INPUT FD
 
15
/sendfd test.data.signencrypt.sign.out w
 
16
OUTPUT FD
 
17
sign --detached --protocol=CMS
 
18
bye
 
19
 
 
20
BYE
 
21
)