Your message dated Tue, 15 Jun 2010 18:02:45 +0000
with message-id <[email protected]>
and subject line Bug#584812: fixed in grub2 1.98+20100614-1
has caused the Debian Bug report #584812,
regarding grub-pc: savedefault not working (grubenv not updating?)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
584812: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=584812
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: grub-pc
Version: 1.98+20100602-1
Severity: normal


To the best of my ability I have configured /etc/default/grub for savedefault 
functionality.
But it's not working.
I note that /boot/grub/grubenv has a modified date of May 25 and that if I move 
this file, a new one is not created in its place, which is not what I expected.

When I say it's not working, I mean that grub-pc always defaults to the first 
entry in my list, regardless of whether I most recently booted into Windows.

My /etc/default/grub is

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.

GRUB_DEFAULT=saved
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2>/dev/null || echo Sidux Debian`
#GRUB_DISTRIBUTOR=`echo Sidux Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX="vga=791"
GRUB_SAVEDEFAULT=true

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=1280x800

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_LINUX_RECOVERY="true"
~                                                         
-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/disk/by-uuid/573c35ff-3f2a-4218-8e3a-933354b1f738 / ext4 
rw,noatime,errors=remount-ro,barrier=0,data=ordered 0 0
/dev/sda1 /media/disk1part1 vfat 
rw,nosuid,nodev,noexec,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=cp437,iocharset=utf8,shortname=lower,quiet,utf8,errors=remount-ro
 0 0
/dev/sda2 /media/disk1part2 fuseblk 
ro,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096
 0 0
/dev/sda3 /media/disk1part3 fuseblk 
ro,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096
 0 0
*********************** END /proc/mounts

*********************** BEGIN /boot/grub/device.map
(hd0) /dev/sda
*********************** END /boot/grub/device.map

*********************** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="${saved_entry}"
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
    saved_entry=${chosen}
    save_env saved_entry
  fi
}
insmod msdos
insmod ext2
set root='(hd0,6)'
search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=1280x800
  insmod gfxterm
  insmod vbe
fi
if terminal_output gfxterm ; then true ; else
  # For backward compatibility with versions of terminal.mod that don't
  # understand terminal_output
  terminal gfxterm
fi
insmod msdos
insmod ext2
set root='(hd0,6)'
search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod msdos
insmod ext2
set root='(hd0,6)'
search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
insmod png
if background_image /boot/grub/moreblue-orbit-grub.png ; then
  set color_normal=black/black
  set color_highlight=magenta/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.7-sidux-686' --class 
debian --class gnu-linux --class gnu --class os {
        savedefault
        insmod msdos
        insmod ext2
        set root='(hd0,6)'
        search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
        echo    'Loading Linux 2.6.34-0.slh.7-sidux-686 ...'
        linux   /boot/vmlinuz-2.6.34-0.slh.7-sidux-686 
root=UUID=573c35ff-3f2a-4218-8e3a-933354b1f738 ro vga=791 quiet
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.34-0.slh.7-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.7-sidux-686 (recovery 
mode)' --class debian --class gnu-linux --class gnu --class os {
        savedefault
        insmod msdos
        insmod ext2
        set root='(hd0,6)'
        search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
        echo    'Loading Linux 2.6.34-0.slh.7-sidux-686 ...'
        linux   /boot/vmlinuz-2.6.34-0.slh.7-sidux-686 
root=UUID=573c35ff-3f2a-4218-8e3a-933354b1f738 ro single vga=791
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.34-0.slh.7-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.5-sidux-686' --class 
debian --class gnu-linux --class gnu --class os {
        savedefault
        insmod msdos
        insmod ext2
        set root='(hd0,6)'
        search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
        echo    'Loading Linux 2.6.34-0.slh.5-sidux-686 ...'
        linux   /boot/vmlinuz-2.6.34-0.slh.5-sidux-686 
root=UUID=573c35ff-3f2a-4218-8e3a-933354b1f738 ro vga=791 quiet
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.34-0.slh.5-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.5-sidux-686 (recovery 
mode)' --class debian --class gnu-linux --class gnu --class os {
        savedefault
        insmod msdos
        insmod ext2
        set root='(hd0,6)'
        search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
        echo    'Loading Linux 2.6.34-0.slh.5-sidux-686 ...'
        linux   /boot/vmlinuz-2.6.34-0.slh.5-sidux-686 
root=UUID=573c35ff-3f2a-4218-8e3a-933354b1f738 ro single vga=791
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.34-0.slh.5-sidux-686
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
        insmod msdos
        insmod ext2
        set root='(hd0,6)'
        search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
        multiboot       /boot/memtest86+_multiboot.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
        insmod msdos
        insmod ext2
        set root='(hd0,6)'
        search --no-floppy --fs-uuid --set 573c35ff-3f2a-4218-8e3a-933354b1f738
        multiboot       /boot/memtest86+_multiboot.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows 7 (loader) (on /dev/sda2)" {
        savedefault
        insmod msdos
        insmod ntfs
        set root='(hd0,2)'
        search --no-floppy --fs-uuid --set 00080f07080efc02
        chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
*********************** END /boot/grub/grub.cfg

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.34-0.slh.5-sidux-686 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]    1.5.32          Debian configuration management sy
ii  grub-common              1.98+20100602-1 GRand Unified Bootloader, version 
ii  libc6                    2.11.1-2        Embedded GNU C Library: Shared lib
ii  libdevmapper1.02.1       2:1.02.47-1     The Linux Kernel Device Mapper use
ii  ucf                      3.0025          Update Configuration File: preserv

grub-pc recommends no packages.

Versions of packages grub-pc suggests:
ii  desktop-base                  5.0.5      common files for the Debian Deskto

-- debconf information:
  grub2/kfreebsd_cmdline:
* grub2/linux_cmdline: vga=791
  grub-pc/chainload_from_menu.lst: true
  grub-pc/kopt_extracted: false
* grub-pc/install_devices: /dev/sda
  grub-pc/postrm_purge_boot_grub: false
  grub2/kfreebsd_cmdline_default: quiet
  grub2/linux_cmdline_default: quiet



--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 1.98+20100614-1

We believe that the bug you reported is fixed in the latest version of
grub2, which is due to be installed in the Debian FTP archive:

grub-common_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-common_1.98+20100614-1_i386.deb
grub-coreboot_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-coreboot_1.98+20100614-1_i386.deb
grub-efi-amd64_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-efi-amd64_1.98+20100614-1_i386.deb
grub-efi-ia32_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-efi-ia32_1.98+20100614-1_i386.deb
grub-efi_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-efi_1.98+20100614-1_i386.deb
grub-emu_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-emu_1.98+20100614-1_i386.deb
grub-firmware-qemu_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-firmware-qemu_1.98+20100614-1_i386.deb
grub-ieee1275_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-ieee1275_1.98+20100614-1_i386.deb
grub-linuxbios_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-linuxbios_1.98+20100614-1_i386.deb
grub-pc_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-pc_1.98+20100614-1_i386.deb
grub-rescue-pc_1.98+20100614-1_i386.deb
  to main/g/grub2/grub-rescue-pc_1.98+20100614-1_i386.deb
grub2_1.98+20100614-1.diff.gz
  to main/g/grub2/grub2_1.98+20100614-1.diff.gz
grub2_1.98+20100614-1.dsc
  to main/g/grub2/grub2_1.98+20100614-1.dsc
grub2_1.98+20100614-1_i386.deb
  to main/g/grub2/grub2_1.98+20100614-1_i386.deb
grub2_1.98+20100614.orig.tar.gz
  to main/g/grub2/grub2_1.98+20100614.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Colin Watson <[email protected]> (supplier of updated grub2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Tue, 15 Jun 2010 12:45:35 +0100
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub-emu grub-pc 
grub-rescue-pc grub-coreboot grub-efi-ia32 grub-efi-amd64 grub-ieee1275 
grub-firmware-qemu grub-yeeloong
Architecture: source i386
Version: 1.98+20100614-1
Distribution: unstable
Urgency: low
Maintainer: GRUB Maintainers <[email protected]>
Changed-By: Colin Watson <[email protected]>
Description: 
 grub-common - GRand Unified Bootloader, version 2 (common files)
 grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
 grub-efi   - GRand Unified Bootloader, version 2 (dummy package)
 grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
 grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
 grub-emu   - GRand Unified Bootloader, version 2 (emulated version)
 grub-firmware-qemu - GRUB firmware image for QEMU
 grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
 grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
 grub-pc    - GRand Unified Bootloader, version 2 (PC/BIOS version)
 grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
 grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
 grub2      - GRand Unified Bootloader, version 2 (dummy package)
Closes: 496706 542165 582142 584415 584812 584822 585561 585668
Changes: 
 grub2 (1.98+20100614-1) unstable; urgency=low
 .
   * New Bazaar snapshot.
     - Make target-related error messages from grub-mkimage slightly more
       helpful (closes: #584415).
     - Fix underquoting that broke savedefault (thanks, Mario 'BitKoenig'
       Holbe; closes: #584812).
     - Expand 'info grub' substantially, including a new section on
       configuring authentication (closes: #584822).
     - Give all manual pages proper NAME sections (closes: #496706).
 .
   * Update 915resolution from grub-extras:
     - Fix a hang with 945GME (thanks, Sergio Perticone; closes: #582142).
 .
   [ Colin Watson ]
   * Disable grub-emu on sparc for the time being.  We're currently trying to
     use TARGET_* flags to build it, which won't work.
   * Don't build-depend on libsdl1.2-dev on hurd-i386.  Although
     libsdl1.2-dev exists there, it's currently uninstallable due to missing
     libpulse-dev, and we can happily live without it for now.
   * kfreebsd-amd64 needs gcc-4.4-multilib too (closes: #585668).
   * Warn and return without error from prepare_grub_to_access_device if
     /boot is a dm-crypt device (thanks, Marc Haber; closes: #542165).
   * Make /etc/grub.d/05_debian_theme usable by shells other than bash
     (thanks, Alex Chiang; closes: #585561).
   * Remove grub-mkisofs leftovers from debian/copyright.
   * Fix reversed sense of DEB_BUILD_OPTIONS=nocheck handling.
   * Build-depend on qemu-system for grub-pc tests.
Checksums-Sha1: 
 6114f3158223ffca5d6b2c528df99b7a98d7332e 2799 grub2_1.98+20100614-1.dsc
 01492a448cd05901dda4b4fb16f79fa9d5f88aba 1821929 
grub2_1.98+20100614.orig.tar.gz
 d3992c17b1ccbadad55edf39edf0524a0c564286 394668 grub2_1.98+20100614-1.diff.gz
 532a0facf9c5a9386d48b2405ad616ff1df00a5e 262674 grub2_1.98+20100614-1_i386.deb
 6006e9e78c9325a1fe67100a1682cb4500d0af14 261418 
grub-linuxbios_1.98+20100614-1_i386.deb
 5bb6d0cfc895ab435f510f432fff4d048111ad5f 261416 
grub-efi_1.98+20100614-1_i386.deb
 fd89ab3a608336f189126db8ebd522d070462c39 1619360 
grub-common_1.98+20100614-1_i386.deb
 ac744abff3b0409baebd75991ba54c8c0a408884 2602132 
grub-emu_1.98+20100614-1_i386.deb
 f8963f00690b02fd5cefdf7c6d03adf4cfa29541 912818 
grub-pc_1.98+20100614-1_i386.deb
 bd6ed8d388ee479ac05f2cab2150ae269c24319e 1404512 
grub-rescue-pc_1.98+20100614-1_i386.deb
 a0cacc79744868d7afe77d702216519881c6dbf8 715862 
grub-coreboot_1.98+20100614-1_i386.deb
 1a5f3d04889069f3336f1fb2a5fdfc9fe9d63185 750882 
grub-efi-ia32_1.98+20100614-1_i386.deb
 ba3e8f1fd52dfb31263dba617cf8f57e52540fed 825544 
grub-efi-amd64_1.98+20100614-1_i386.deb
 91da1d3b5c1c0da78a70579d288ee9b30bc91bc9 709676 
grub-ieee1275_1.98+20100614-1_i386.deb
 bcccf961c951de513c4329b115e2814efef947ac 664438 
grub-firmware-qemu_1.98+20100614-1_i386.deb
Checksums-Sha256: 
 fa646ebd3f96d0a3df164d37a1a40e3aa6c92b312b395aba3c687b1f812e2a48 2799 
grub2_1.98+20100614-1.dsc
 926ba1fc41e3e45db8c964081cd9328cd1dbea2443f6988ecacec5b2899c8246 1821929 
grub2_1.98+20100614.orig.tar.gz
 5621fd9d1e32b7401d3bcf9f722a73171ff60df2b558070394c485253eaae611 394668 
grub2_1.98+20100614-1.diff.gz
 9dfbad0c860afd7c16ab313162c82866d85526ee0cf87d08fe0e039493325948 262674 
grub2_1.98+20100614-1_i386.deb
 2eaadf994c64f4e49c281c00b8cb6c6888fc9827aa9e7f114b4b834753af5ef9 261418 
grub-linuxbios_1.98+20100614-1_i386.deb
 daedb7255f02b56cb7578b775bb59c1594829691e2997e1b0e8e4ba18a2004ac 261416 
grub-efi_1.98+20100614-1_i386.deb
 ca3068e872f91afdf7a9e4a239d07323c82e1d3d77568ded35df2ba59911ebcd 1619360 
grub-common_1.98+20100614-1_i386.deb
 ae158ccb3c58fbf8a547ac3fe3b3bb09cc7b162fc738f7dc017f2ace1e8a1c23 2602132 
grub-emu_1.98+20100614-1_i386.deb
 59db435212be8130c9c9220e3f4168830a49256af09fc92709e16daf92846b25 912818 
grub-pc_1.98+20100614-1_i386.deb
 42cb8affe25f4d92e3129c6c3559f160a9be1d1547dbc8488da96c48dc50ed09 1404512 
grub-rescue-pc_1.98+20100614-1_i386.deb
 50d2b42b67c9800fd92d23e2d881703812e8171b845e5a5dccd9dbfa8415029a 715862 
grub-coreboot_1.98+20100614-1_i386.deb
 de3074bd44a80f0e843ba56c3881f7bea2fb24a0141aeec1134bab0ab5c1bba2 750882 
grub-efi-ia32_1.98+20100614-1_i386.deb
 d70c51c27e20a4acbc23409c16dec91f1b76449b2d9d832ecc3e0c064af69ef9 825544 
grub-efi-amd64_1.98+20100614-1_i386.deb
 a2ecc24f51a6fb2d4512d5c3f784fb832fe1e36f79547454c9f34189b240857b 709676 
grub-ieee1275_1.98+20100614-1_i386.deb
 473a45b798299dfbeb9ddc11a18994ec4ea05ec31730131b71201189b6a3fc99 664438 
grub-firmware-qemu_1.98+20100614-1_i386.deb
Files: 
 9e4f8d21ddb1a92842999632215f6138 2799 admin extra grub2_1.98+20100614-1.dsc
 4eb4a639110d86f73712fcad0a393253 1821929 admin extra 
grub2_1.98+20100614.orig.tar.gz
 e8820da1936b3d9d19276333c6c8ac60 394668 admin extra 
grub2_1.98+20100614-1.diff.gz
 e1b8f791055127ec596896bb4b3bef97 262674 admin extra 
grub2_1.98+20100614-1_i386.deb
 12b6f46470b6d03d8e7c87553bb59982 261418 admin extra 
grub-linuxbios_1.98+20100614-1_i386.deb
 e96857ee71bef176ef9d5dcbb33764e7 261416 admin extra 
grub-efi_1.98+20100614-1_i386.deb
 e5a44139aaeacba69f8b1688447210a6 1619360 admin extra 
grub-common_1.98+20100614-1_i386.deb
 025aedc21a135fef4b38cdc5b8afcdb8 2602132 admin extra 
grub-emu_1.98+20100614-1_i386.deb
 dce696b69e37bde3a2f01fe0b736aaaf 912818 admin extra 
grub-pc_1.98+20100614-1_i386.deb
 75334a4ae7b6377b09e9678ea08859b2 1404512 admin extra 
grub-rescue-pc_1.98+20100614-1_i386.deb
 7e495d9bd063ddc6e4c6e588d0ac2a0d 715862 admin extra 
grub-coreboot_1.98+20100614-1_i386.deb
 79a0a83354e0927ca2717d9659cab1f2 750882 admin extra 
grub-efi-ia32_1.98+20100614-1_i386.deb
 5d4d2099e5638e57c57a892e13ed49e2 825544 admin extra 
grub-efi-amd64_1.98+20100614-1_i386.deb
 ccd8afd0457ca4ba38ed4b5fee02daf4 709676 admin extra 
grub-ieee1275_1.98+20100614-1_i386.deb
 cb544352f24a33faca159af6ff3f9acc 664438 admin extra 
grub-firmware-qemu_1.98+20100614-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Colin Watson <[email protected]> -- Debian developer

iQIVAwUBTBe7hDk1h9l9hlALAQhGdw//UNa+3tuLELh994+aUPRWh/47Z0c0KWKP
5YSgLmElbc3LS3tCsYRQgGbuMwhOT9MInqRJhBCkAq5sXRU5Y11MO/BmjDZSyfBN
YTUKo5C8/UQyxDOxSINH521soipMxTUIDoijsvb0mSHS04EN2Y2uZ+ZpwCcLMZi4
OcGCGkQL3Hw+qOShehboFpq4lmqSVxsFnEuGt0rOYdFKr4Z/BgR763z1aNOoQYW2
p2FWScNho1yek4GqqAJqIlaWiAS6aclpedbidCMe18eTs8Nauw+8BNaeH4bEWIAS
5nEejuigA5EU2atN17TOFDFQ+4xxsBJJKp3PfU+u/rbQGlbhaJG7YrzHs0g7CWL7
54zfqUl1rULb0oexf44SgtC9QXQzxCLxfcz7NBU0SabgLWYFxgGYjg3igF462LZw
2zOuT0TZKKNa91yU9D0I0TvkCIGxvoawPTieVvwSx6+Th9or7D8lv+gIQdLWzpnA
PShlBTCAjAIhohXAvXQC/Yca5uClA1QcPWLSquxKnandIxo6SZe9+MvVwjb0L7qQ
yTpDWFUlqOtDs3fftEFB+Z6INKU3LWTjfj2/76F8HvYM5MI1xaXi/ISQe/NV1w9g
l65g43lcr/eJX7vZfSVdDKpdcyE8HVw/uZuG/pdwDxWrqk0si7XnYVkrLf5hvsAc
94phVD2IAfQ=
=HaEM
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to