Main > Free Download Search >

Free hqx windows software for linux

hqx windows

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6
Linux in a window of Windows 4.0-r0

Linux in a window of Windows 4.0-r0


Linux in a window of Windows. Run the Debian Linux appliance in the free VMware Player side by side with Windows. This is a full desktop Gnome install... more>> <<less
Download (455993KB)
Added: 2009-04-13 License: Freeware Price: Free
196 downloads
Windows Powertools 4.0.0.1

Windows Powertools 4.0.0.1


Windows Powertools has these features : *Cache2Trash:Clear unwanted temporary files to gain space *DiskCheck: Check for disk errors and resol... more>> <<less
Download (655KB)
Added: 2009-04-07 License: Freeware Price: Free
1074 downloads
Windows tips and tricks 1.0

Windows tips and tricks 1.0


This is free collection of an authors advices. File format: chm.... more>> <<less
Download (41KB)
Added: 2009-04-02 License: Freeware Price: Free
259 downloads
XCmail 2.2

XCmail 2.2


XCmail is a MIME and multi POP3 server capable mailtool for X11 using the Xclasses layout library. more>>
XCmail is a MIME and multi POP3 server capable mailtool for X11 using the Xclasses layout library. XCmail was designed completely object orientated and by this may be improved easily.
The main purpose of XCmail is to read and write mails which may have any kind of data added (attached). For this XCmail can handle MIME types and has so called "helpers" to show different types. And XCmail offers "encoders" which encode and decode binary data into ASCII to allow the transport as mail over the Internet.
The GUI (graphical user interface) was designed to be mostly self explaining but of course there may be some things which are not explaining them self like settings or standard names that are unknown to first users.
The GUI was designed to be as simple as it can be and self explaining. Though, there are a few buttons which are not so easy to understand fo first users because are not standard.
XCmail also offers "encoders" which encode and decode binary data into ASCII to allow the transport via mail over the Internet.
The program works with a local mailbox (eg. /var/spool/mail) and multiple POP3 servers. With POP3 XCmail uses the faster UIDL function of POP3 servers (may be disabled if servers dont support this) and has a so called "UIDL history": If you get mails from your POP3 server but dont want to remove them there and later remove them only locally other mailers will read this mails again. Not XCmail! The UIDL history keeps a history of the mails read from the server so it wont read them again.
XCmail supports multiple mailboxes, has an address book for your favority email addresses and XCmail may start external programs to encode mails or handle MIME types.
XCmail also supportes PGP within PGP MIME (RFC 2015)!
Main features:
- allows the user to add multiple parts on one mail, eg. send files together with a text (called attachment)
- get mails from multiple remote mail servers
- send mails to a remote mail server using simple message transfer protokol (SMTP)
- authenticate on SMTP servers - is sometimes required on SMTP servers to stop spammers from relaying
- authenticate at POP3 server before sending mails via SMTP - this is required by some mail servers if they dont offer SMTP AUTH
- encrypt mails so unwanted persons can not read them
- encrypt complete MIME mails - including the attachments. This is a standard specified in RFC 2015
- send a nice and small picture of yourself with any mail - this is shown if the mail is read
- speedup for POP3
- this avoids XCmail from reading the same mails multiple times from the mail server
- to send files (eg. binaries) with a mail they must be encoded - XCmail offers various encoders, from standard uuencode and base64 to Mac HQX
- because not all attached files are programs XCmail offers an open interface to handle those data - eg. open an external viewer for pictures
- with plugins XCmail may be tuned - eg. some encoders and helpers are plugins so they may not be installed if a users doesnt need them - this required less space on disk and memory
- ever send a mail and later seen that it had some words misspelled? With ISpell this is no longer a problem. ISpell offers checks in many langauges!
- Put extra headers in every mail you send, eg some more information on you or some extra settings for mail agents
- put your favorite recipients in XCmails addressbook
- keeps an second internal addressbook for faster choosing an email recipient
- searches your addressbooks for a matching name or address during you type the recipient
- group different folder to one visible vfolder - for better overview
- Dont understand the language of a mail? XCmail may translate it for you by using altavistas babelfish service!
- You want to archiv many or every mail? This takes a lot of disk space?! Use XCmails folder archiv which compresses archived folders using GZIP standard
- sort or remove your mails before you "must" read them
- put are your favorite addresses in the addressbook
- dont know how to translate a word? use the dictionarys in the Web within the XCmail GUI
- using Spam Bouncer as spam filter plugin
- delete selected mails from your POP3 server
- big mails can be transfered explicitely from your POP3 server
- vCards can be read and a personal or official (from your job) vCard can be sent with every mail (you may choose which of them)
- mails of the incoming folder may be moved to a received folder automatically by many options (after reading, replying, forwarding a mail or if it is some days old)
- helps first time users to setup XCmail
<<less
Download (0.77MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1235 downloads
Convert::BinHex 1.119

Convert::BinHex 1.119


Convert::BinHex can extract data from Macintosh BinHex files. more>>
Convert::BinHex can extract data from Macintosh BinHex files.

ALPHA WARNING: this code is currently in its Alpha release. Things may change drastically until the interface is hammered out: if you have suggestions or objections, please speak up now!

SYNOPSIS

Simple functions:

use Convert::BinHex qw(binhex_crc macbinary_crc);

# Compute HQX7-style CRC for data, pumping in old CRC if desired:
$crc = binhex_crc($data, $crc);

# Compute the MacBinary-II-style CRC for the data:
$crc = macbinary_crc($data, $crc);

Hex to bin, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Hex2Bin") which keeps internal conversion state:
# Create and use a "translator" object:
my $H2B = Convert::BinHex->hex2bin; # get a converter object
while (< STDIN >) {
print $STDOUT $H2B->next($_); # convert some more input
}
print $STDOUT $H2B->done; # no more input: finish up

Hex to bin, OO interface. The following operations must be done in the order shown!
# Read data in piecemeal:
$HQX = Convert::BinHex->open(FH=>*STDIN) || die "open: $!";
$HQX->read_header; # read header info
@data = $HQX->read_data; # read in all the data
@rsrc = $HQX->read_resource; # read in all the resource

Bin to hex, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Bin2Hex") which keeps internal conversion state:
# Create and use a "translator" object:
my $B2H = Convert::BinHex->bin2hex; # get a converter object
while (< STDIN >) {
print $STDOUT $B2H->next($_); # convert some more input
}
print $STDOUT $B2H->done; # no more input: finish up

Bin to hex, file interface. Yes, you can convert to BinHex as well as from it!
# Create new, empty object:
my $HQX = Convert::BinHex->new;

# Set header attributes:
$HQX->filename("logo.gif");
$HQX->type("GIFA");
$HQX->creator("CNVS");

# Give it the data and resource forks (either can be absent):
$HQX->data(Path => "/path/to/data"); # here, data is on disk
$HQX->resource(Data => $resourcefork); # here, resource is in core

# Output as a BinHex stream, complete with leading comment:
$HQX->encode(*STDOUT);

PLANNED!!!! Bin to hex, "CAP" interface. Thanks to Ken Lunde for suggesting this.
# Create new, empty object from CAP tree:
my $HQX = Convert::BinHex->from_cap("/path/to/root/file");
$HQX->encode(*STDOUT);

BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data streams. Ths module provides a means of converting those data streams back into into binary data.

<<less
Download (0.083MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1234 downloads
FreeFont 20060126

FreeFont 20060126


FreeFont project aims to provide a set of free outline fonts. more>>
FreeFont project aims to provide a set of free outline (PostScript Type0, TrueType, OpenType...) fonts covering the ISO 10646/Unicode UCS (Universal Character Set).
Why do we need free outline UCS fonts?
A large number of free software users switched from free X11 bitmapped fonts to proprietary Microsoft Truetype fonts, as a) they used to be freely downloaded from Microsoft Typography page, b) they contain a more or less decent subset of the ISO 10646 UCS (Universal Character Set), c) they are high-quality, well hinted scalable Truetype fonts, and d) Freetype, a free high-quality Truetype font renderer is available and has been integrated into the latest release of XFree86, the free X11 server.
Building a dependence on non-free software, even a niche one like fonts, is dangerous. Microsoft Truetype core fonts were never free, they were just costless. Citing the TrueType core fonts for the Web FAQ: You may only redistribute the fonts in their original form (.exe or .sit.hqx) and with their original file name from your Web site or intranet site. You must not supply the fonts, or any derivative fonts based on them, in any form that adds value to commercial products, such as CD-ROM or disk based multimedia programs, application software or utilities. As of August 2002, however, the fonts are not anymore available on the Web, which makes the situation clearer.
Dont there exist any free high-quality outline fonts? Yes, they do. URW++, a German digital typefoundry, released their own version of the 35 Postscript Type 1 core fonts under GPL as their donation to the Ghostscript project. The Wadalab Kanji comittee has produced Type 1 font files with thousands of filigree Japanese glyphs. Yannis Haralambous has drawn beautiful glyphs for the Omega typesetting system. And so on. Scattered around the internet there are numerous other free resources for other national scripts, many of them aiming to be a suitable match for Latin fonts like Times or Helvetica.
Free UCS outline fonts will cover the following character sets:
- ISO 8859 parts 1-15
- CEN MES-3 European Unicode Subset
- IBM/Microsoft code pages 437, 850, 852, 1250, 1252 and more
- Microsoft/Adobe Windows Glyph List 4 (WGL4)
- KOI8-R and KOI8-U
- DEC VT100 graphics symbols
- International Phonetic Alphabet
- Arabic, Hebrew, Armenian, Georgian, Ethiopian, Thai and Lao alphabets, including Arabic presentation forms A/B
- Japanese Katakana and Hiragana
- mathematical symbols, including the whole TeX repertoire of symbols
- APL symbols etc.
<<less
Download (3.9MB)
Added: 2006-04-25 License: GPL (GNU General Public License) Price:
1286 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1