wordfast no funciona
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 10
No Friction 0.1
No Friction is a roll-a-ball-and-collect-the-dots puzzle game. more>>
No Friction is a roll-a-ball-and-collect-the-dots puzzle game.
In this simple puzzle game, you control a rolling ball that has to collect the green dots and make it to the end of each level.
The ball can only be sent rolling if its sitting still, and it only stops when it hits a wall; it cant change direction once its moving.
It sounds simple, but there are 20 progressively harder levels - only a master can beat them all, and piece together the code that reveals the solution to Level X.
There is also a secret level, and the entrance is hidden underneath a breakable block somewhere in the game.
Keys:
Enter: Restart current level
F: Toggle fullscreen mode
F2: Return to the selection screen
F3: Save what level youre currently on
F4: Load a level youve previously saved
<<lessIn this simple puzzle game, you control a rolling ball that has to collect the green dots and make it to the end of each level.
The ball can only be sent rolling if its sitting still, and it only stops when it hits a wall; it cant change direction once its moving.
It sounds simple, but there are 20 progressively harder levels - only a master can beat them all, and piece together the code that reveals the solution to Level X.
There is also a secret level, and the entrance is hidden underneath a breakable block somewhere in the game.
Keys:
Enter: Restart current level
F: Toggle fullscreen mode
F2: Return to the selection screen
F3: Save what level youre currently on
F4: Load a level youve previously saved
Download (0.043MB)
Added: 2006-05-09 License: GPL (GNU General Public License) Price:
1263 downloads
Kana no quiz 1.7
Kana no quiz is a little tool to memorize japanese kana (hiragana & katakana). more>>
Kana no quiz project is a little tool to memorize japanese kana (hiragana & katakana).
The method is quite simple: kana randomly appear and you have to find their transcription in rōmaji (Hepburn). There are several possibilities, but only one anwser is right!
Thanks to this method, you memorize the kana to its transcription, and thus know how to pronouce it!
It has been translated into several languages, and many quiz options are configurable. Kana images have been initially modelled in SVG and are placed under the Free Art License.
Through its option panel, Kana no quiz allows you to tune up
the quiz precisely, like choosing which group of kana you want
to train yourself upon.
First, hiragana and katakana are separated, both are then di-vided into big sets of kana according to their type ("Basic", "Modified", "Combined"; and a special "Additional" set for katakana only) which are thus composed of various portions containing 5/6 kana, following the traditional alphabet order (i.e.: ``ka ki ku ke ko").
According to your need and level, you may select one or more portions of the same or different sets, whole sets, all the kana... Once you feel comfortable (you can check it with the results displayed at the end of each quiz), you may also increase the number of possible answers in the random list, or even choose to answer directly through the text entry. Difficulty can be adapted to your skill: this is progressive learning.
From the complete beginner who has to start easily and learn step by step, to the wizard who just wants to confirm his/her absolute master of the kana, everyone should get satisfated with Kana no quiz!
<<lessThe method is quite simple: kana randomly appear and you have to find their transcription in rōmaji (Hepburn). There are several possibilities, but only one anwser is right!
Thanks to this method, you memorize the kana to its transcription, and thus know how to pronouce it!
It has been translated into several languages, and many quiz options are configurable. Kana images have been initially modelled in SVG and are placed under the Free Art License.
Through its option panel, Kana no quiz allows you to tune up
the quiz precisely, like choosing which group of kana you want
to train yourself upon.
First, hiragana and katakana are separated, both are then di-vided into big sets of kana according to their type ("Basic", "Modified", "Combined"; and a special "Additional" set for katakana only) which are thus composed of various portions containing 5/6 kana, following the traditional alphabet order (i.e.: ``ka ki ku ke ko").
According to your need and level, you may select one or more portions of the same or different sets, whole sets, all the kana... Once you feel comfortable (you can check it with the results displayed at the end of each quiz), you may also increase the number of possible answers in the random list, or even choose to answer directly through the text entry. Difficulty can be adapted to your skill: this is progressive learning.
From the complete beginner who has to start easily and learn step by step, to the wizard who just wants to confirm his/her absolute master of the kana, everyone should get satisfated with Kana no quiz!
Download (2.0MB)
Added: 2006-10-15 License: GPL (GNU General Public License) Price:
1111 downloads
Configuration with no services supported
Configuration with no services supported script is for a single host firewall configuration with no services supported. more>>
Configuration with no services supported script is for a single host firewall configuration with no services supported by the firewall machine itself.
Sample:
# USER CONFIGURABLE SECTION
# The name and location of the ipchains utility.
IPTABLES=iptables
# The path to the ipchains executable.
PATH="/usr/local/sbin"
# Our internal network address space and its supporting network device.
OURNET="10.5.0.0/24"
OURBCAST="10.5.0.255"
OURDEV="eth0"
# The outside address and the network device that supports it.
ANYADDR="0/0"
ANYDEV="ppp0"
# The TCP services we wish to allow to pass - "" empty means all ports
# note: comma separated
TCPIN="ssh,ftp,ftp-data"
TCPOUT="smtp,www,ssh,telnet,ftp,ftp-data,irc,http"
# The UDP services we wish to allow to pass - "" empty means all ports
# note: comma separated
UDPIN="domain"
UDPOUT="domain"
# The ICMP services we wish to allow to pass - "" empty means all types
# ref: /usr/include/netinet/ip_icmp.h for type numbers
# note: comma separated
ICMPIN="0,3,11"
ICMPOUT="8,3,11"
# Logging; uncomment the following line to enable logging of datagrams
# that are blocked by the firewall.
# LOGGING=1
# END USER CONFIGURABLE SECTION
####################################
# Flush the Input table rules
echo -n Flushing forward... && {
$IPTABLES -F FORWARD
} && echo done
# We want to deny incoming access by default.
# echo -n Denying incoming access... && {
# $IPTABLES -P FORWARD drop
# } && echo done
# Drop all datagrams destined for this host received from outside.
echo -n Dropping incoming datagrams... && {
$IPTABLES -A INPUT -i $ANYDEV -j DROP
} && echo done
# SPOOFING
# We should not accept any datagrams with a source address matching ours
# from the outside, so we deny them.
echo -n Preventing spoofing... && {
$IPTABLES -A FORWARD -s $OURNET -i $ANYDEV -j DROP
} && echo done
# SMURF
# Disallow ICMP to our broadcast address to prevent "Smurf" style attack.
echo -n Preventing SMURFs... && {
$IPTABLES -A FORWARD -p icmp -i $ANYDEV -d $OURNET -j DROP
} && echo done
# We should accept fragments, in iptables we must do this explicitly.
echo -n Accepting fragments... && {
$IPTABLES -A FORWARD -f -j ACCEPT
} && echo done
# TCP
# We will accept all TCP datagrams belonging to an existing connection
# (i.e. having the ACK bit set) for the TCP ports were allowing through.
# This should catch more than 95 % of all valid TCP packets.
echo -n Accepting valid incoming tcp datagrams on existing connections... && {
$IPTABLES -A FORWARD -m multiport -p tcp -d $OURNET --dports $TCPIN ! --tcp-flags SYN,ACK ACK -j ACCEPT
} && echo done
echo -n Accepting valid outgoing tcp datagrams on existing connections... && {
$IPTABLES -A FORWARD -m multiport -p tcp -s $OURNET --sports $TCPIN ! --tcp-flags SYN,ACK ACK -j ACCEPT
} && echo done
# TCP - INCOMING CONNECTIONS
# We will accept connection requests from the outside only on the
# allowed TCP ports.
echo -n Accepting incoming tcp connections on allowed ports... && {
$IPTABLES -A FORWARD -m multiport -p tcp -i $ANYDEV -d $OURNET --dports $TCPIN --syn -j ACCEPT
} && echo done
# TCP - OUTGOING CONNECTIONS
# We will accept all outgoing tcp connection requests on the allowed TCP ports.
echo -n Accepting outgoing traffic on allowed tcp ports... && {
$IPTABLES -A FORWARD -m multiport -p tcp -i $OURDEV -d $ANYADDR --dports $TCPOUT --syn -j ACCEPT
} && echo done
# UDP - INCOMING
# allow UDP datagrams in on the allowed ports and back.
echo -n Allowing UDP datagrams in on the allowed ports and back... && {
$IPTABLES -A FORWARD -m multiport -p udp -i $ANYDEV -d $OURNET --dports $UDPIN -j ACCEPT
$IPTABLES -A FORWARD -m multiport -p udp -i $ANYDEV -s $OURNET --sports $UDPIN -j ACCEPT
} && echo done
# UDP - OUTGOING
# We will allow UDP datagrams out to the allowed ports and back.
echo -n Allowing UDP datagrams out on the allowed ports and back... && {
$IPTABLES -A FORWARD -m multiport -p udp -i $OURDEV -d $ANYADDR --dports $UDPOUT -j ACCEPT
$IPTABLES -A FORWARD -m multiport -p udp -i $OURDEV -s $ANYADDR --sports $UDPOUT -j ACCEPT
} && echo done
# ICMP - INCOMING
# We will allow ICMP datagrams in of the allowed types.
# echo -n Allowing ICMP datagrams in of the allowed types... && {
# $IPTABLES -A FORWARD -p icmp -i $ANYDEV -d $OURNET --icmp-type $ICMPIN -j ACCEPT
# } && echo done
# ICMP - OUTGOING
# We will allow ICMP datagrams out of the allowed types.
# echo -n Allowing ICMP datagrams out of the allowed types... && {
# $IPTABLES -A FORWARD -p icmp -i $OURDEV -d $ANYADDR --icmp-type $ICMPOUT -j ACCEPT
# } && echo done
# DEFAULT and LOGGING
# All remaining datagrams fall through to the default
# rule and are dropped. They will be logged if youve
# configured the LOGGING variable above.
#
# DoS
# enabling Syn-flood protection
echo -n Enabling Syn-flood protection... && {
iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT
} && echo done
# Enabling Furtive port scanner protection
echo -n Enabling Furtive port scanner protection... && {
iptables -A FORWARD -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT
} && echo done
# Enabling ping of death protection
echo -n Enabling ping of death protection... && {
iptables -A FORWARD -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
} && echo done
if [ "$LOGGING" ]
then
# Log barred TCP
$IPTABLES -A FORWARD -m tcp -p tcp -j LOG
# Log barred UDP
$IPTABLES -A FORWARD -m udp -p udp -j LOG
# Log barred ICMP
$IPTABLES -A FORWARD -m udp -p icmp -j LOG
fi
#
# end.
<<lessSample:
# USER CONFIGURABLE SECTION
# The name and location of the ipchains utility.
IPTABLES=iptables
# The path to the ipchains executable.
PATH="/usr/local/sbin"
# Our internal network address space and its supporting network device.
OURNET="10.5.0.0/24"
OURBCAST="10.5.0.255"
OURDEV="eth0"
# The outside address and the network device that supports it.
ANYADDR="0/0"
ANYDEV="ppp0"
# The TCP services we wish to allow to pass - "" empty means all ports
# note: comma separated
TCPIN="ssh,ftp,ftp-data"
TCPOUT="smtp,www,ssh,telnet,ftp,ftp-data,irc,http"
# The UDP services we wish to allow to pass - "" empty means all ports
# note: comma separated
UDPIN="domain"
UDPOUT="domain"
# The ICMP services we wish to allow to pass - "" empty means all types
# ref: /usr/include/netinet/ip_icmp.h for type numbers
# note: comma separated
ICMPIN="0,3,11"
ICMPOUT="8,3,11"
# Logging; uncomment the following line to enable logging of datagrams
# that are blocked by the firewall.
# LOGGING=1
# END USER CONFIGURABLE SECTION
####################################
# Flush the Input table rules
echo -n Flushing forward... && {
$IPTABLES -F FORWARD
} && echo done
# We want to deny incoming access by default.
# echo -n Denying incoming access... && {
# $IPTABLES -P FORWARD drop
# } && echo done
# Drop all datagrams destined for this host received from outside.
echo -n Dropping incoming datagrams... && {
$IPTABLES -A INPUT -i $ANYDEV -j DROP
} && echo done
# SPOOFING
# We should not accept any datagrams with a source address matching ours
# from the outside, so we deny them.
echo -n Preventing spoofing... && {
$IPTABLES -A FORWARD -s $OURNET -i $ANYDEV -j DROP
} && echo done
# SMURF
# Disallow ICMP to our broadcast address to prevent "Smurf" style attack.
echo -n Preventing SMURFs... && {
$IPTABLES -A FORWARD -p icmp -i $ANYDEV -d $OURNET -j DROP
} && echo done
# We should accept fragments, in iptables we must do this explicitly.
echo -n Accepting fragments... && {
$IPTABLES -A FORWARD -f -j ACCEPT
} && echo done
# TCP
# We will accept all TCP datagrams belonging to an existing connection
# (i.e. having the ACK bit set) for the TCP ports were allowing through.
# This should catch more than 95 % of all valid TCP packets.
echo -n Accepting valid incoming tcp datagrams on existing connections... && {
$IPTABLES -A FORWARD -m multiport -p tcp -d $OURNET --dports $TCPIN ! --tcp-flags SYN,ACK ACK -j ACCEPT
} && echo done
echo -n Accepting valid outgoing tcp datagrams on existing connections... && {
$IPTABLES -A FORWARD -m multiport -p tcp -s $OURNET --sports $TCPIN ! --tcp-flags SYN,ACK ACK -j ACCEPT
} && echo done
# TCP - INCOMING CONNECTIONS
# We will accept connection requests from the outside only on the
# allowed TCP ports.
echo -n Accepting incoming tcp connections on allowed ports... && {
$IPTABLES -A FORWARD -m multiport -p tcp -i $ANYDEV -d $OURNET --dports $TCPIN --syn -j ACCEPT
} && echo done
# TCP - OUTGOING CONNECTIONS
# We will accept all outgoing tcp connection requests on the allowed TCP ports.
echo -n Accepting outgoing traffic on allowed tcp ports... && {
$IPTABLES -A FORWARD -m multiport -p tcp -i $OURDEV -d $ANYADDR --dports $TCPOUT --syn -j ACCEPT
} && echo done
# UDP - INCOMING
# allow UDP datagrams in on the allowed ports and back.
echo -n Allowing UDP datagrams in on the allowed ports and back... && {
$IPTABLES -A FORWARD -m multiport -p udp -i $ANYDEV -d $OURNET --dports $UDPIN -j ACCEPT
$IPTABLES -A FORWARD -m multiport -p udp -i $ANYDEV -s $OURNET --sports $UDPIN -j ACCEPT
} && echo done
# UDP - OUTGOING
# We will allow UDP datagrams out to the allowed ports and back.
echo -n Allowing UDP datagrams out on the allowed ports and back... && {
$IPTABLES -A FORWARD -m multiport -p udp -i $OURDEV -d $ANYADDR --dports $UDPOUT -j ACCEPT
$IPTABLES -A FORWARD -m multiport -p udp -i $OURDEV -s $ANYADDR --sports $UDPOUT -j ACCEPT
} && echo done
# ICMP - INCOMING
# We will allow ICMP datagrams in of the allowed types.
# echo -n Allowing ICMP datagrams in of the allowed types... && {
# $IPTABLES -A FORWARD -p icmp -i $ANYDEV -d $OURNET --icmp-type $ICMPIN -j ACCEPT
# } && echo done
# ICMP - OUTGOING
# We will allow ICMP datagrams out of the allowed types.
# echo -n Allowing ICMP datagrams out of the allowed types... && {
# $IPTABLES -A FORWARD -p icmp -i $OURDEV -d $ANYADDR --icmp-type $ICMPOUT -j ACCEPT
# } && echo done
# DEFAULT and LOGGING
# All remaining datagrams fall through to the default
# rule and are dropped. They will be logged if youve
# configured the LOGGING variable above.
#
# DoS
# enabling Syn-flood protection
echo -n Enabling Syn-flood protection... && {
iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT
} && echo done
# Enabling Furtive port scanner protection
echo -n Enabling Furtive port scanner protection... && {
iptables -A FORWARD -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT
} && echo done
# Enabling ping of death protection
echo -n Enabling ping of death protection... && {
iptables -A FORWARD -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
} && echo done
if [ "$LOGGING" ]
then
# Log barred TCP
$IPTABLES -A FORWARD -m tcp -p tcp -j LOG
# Log barred UDP
$IPTABLES -A FORWARD -m udp -p udp -j LOG
# Log barred ICMP
$IPTABLES -A FORWARD -m udp -p icmp -j LOG
fi
#
# end.
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
982 downloads
No New Window 0.1
No New Window forces Firefox to never open links in a new window automatically. more>>
No New Window forces Firefox to never open links in a new window automatically.
If you want to open a link in a new window, you can still do that via the context menu, but if a website author specifies that a link should open in a new window, that is ignored.
Please note that this extension is not needed anymore (and does, indeed, not install) in Firefox 1.5, as that version offers the desired behaviour as a configuration option.
<<lessIf you want to open a link in a new window, you can still do that via the context menu, but if a website author specifies that a link should open in a new window, that is ignored.
Please note that this extension is not needed anymore (and does, indeed, not install) in Firefox 1.5, as that version offers the desired behaviour as a configuration option.
Download (0.003MB)
Added: 2007-04-18 License: MPL (Mozilla Public License) Price:
920 downloads
Mars, Land of No Mercy 0.2.1
Mars, Land of No Mercy is a turn-based strategy game setting on Mars during the early stages of human colonization. more>>
Mars, Land of No Mercy is a TBS game setting on Mars during the early stages of human colonization.
The player embodies the leader of a mercenary team, landed on Mars to take advantage of conqueror battles between the Worldwide Colonizer Corporations.
The main purpose is to command his team trying to find them commissions, training and leading them in battle, while still being aware of financial and instrumental resources by administering them.
The Mech is the fundamental craft used by mercenaries, but they wont lack of other kind of units, as well as troops.
The game most remarkable point is the incredible liberty given to the player and therefore the great strategic side that derives.
It is indeed up to the player to decide how to behave towards the one who recruited him, and the enemies of turn.
Basically every action leads to a reaction, so it is strongly recommended to keep a good and consistent behavior to achieve confidence from Corporations, and avoid being excluded by them.
Engine:
The game is programmed in C++ upon the SDL layer and a few sublibraries. Its isometric-based engine has been inspired by games of a recent past such as the X-COM serie from Microprose or the latest editions of Civilization.
A multiplayer functionality is not scheduled as of yet. But it is likely to be added in the future.
Main features:
- Greatest level of liberty given to the player
- High strategic component
- Charming Plot
- Original Soundtrack
- Wide variety of Mechs available
<<lessThe player embodies the leader of a mercenary team, landed on Mars to take advantage of conqueror battles between the Worldwide Colonizer Corporations.
The main purpose is to command his team trying to find them commissions, training and leading them in battle, while still being aware of financial and instrumental resources by administering them.
The Mech is the fundamental craft used by mercenaries, but they wont lack of other kind of units, as well as troops.
The game most remarkable point is the incredible liberty given to the player and therefore the great strategic side that derives.
It is indeed up to the player to decide how to behave towards the one who recruited him, and the enemies of turn.
Basically every action leads to a reaction, so it is strongly recommended to keep a good and consistent behavior to achieve confidence from Corporations, and avoid being excluded by them.
Engine:
The game is programmed in C++ upon the SDL layer and a few sublibraries. Its isometric-based engine has been inspired by games of a recent past such as the X-COM serie from Microprose or the latest editions of Civilization.
A multiplayer functionality is not scheduled as of yet. But it is likely to be added in the future.
Main features:
- Greatest level of liberty given to the player
- High strategic component
- Charming Plot
- Original Soundtrack
- Wide variety of Mechs available
Download (2.4MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1033 downloads
No Tab Close Button 0.2.1
No Tab Close Button is an extension which removes the close buttons on the tabs. more>>
No Tab Close Button is an extension which removes the close buttons on the tabs.
Removes the close buttons on the tabs (Firefox 2)
Removes the button on the right (Firefox 1.x).
For people that like to close their tabs with a middle click.
<<lessRemoves the close buttons on the tabs (Firefox 2)
Removes the button on the right (Firefox 1.x).
For people that like to close their tabs with a middle click.
Download (0.001MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
928 downloads
No Gravity 2.0
No Gravity is a 3D arcade space shooter. more>>
No Gravity game is a futuristic and fantastic universe made of five intergalactic worlds. An arcade type game with great playability, where it is easy to plunge into space battles against spacefighters, space stations and more !
No Gravity is a space shooter in 3D a la Wing Commander. The player is controlling a space ship view from the first person. In each mission, the player need to accomplish some objectives, like shoot and destroys enemy ships or base, escorting some ships, clearing mine field, etc....
A brief description of the objectives is given at the beginning of a mission. In some situations, the player has some wingmen, and it can controls them by giving order like attack enemy, retreat, protect the base etc... A mission is composed of different sectors which has differents objectives.
When the objectives of the current sector is complete, the player needs to go the nearest NAV point, when he can wrap to the next sector. In the last sector, a warp gate is apparearing and the player need to go through it and complete the level. At the end of each episodes (one episode is 10 missions), there is a large base station to destroy.
When the player complete all the episodes (5 episodes), the game ends. The mission fails if : - The player got destroyed or - if an objective is not complete (like an important ship being destroyed by enemy).
Installation:
For Linux users, Download the No Gravity (Combo Bin+Data - Win32/Mac/Linux only)
for Linux i386 package and run the autopackage.
<<lessNo Gravity is a space shooter in 3D a la Wing Commander. The player is controlling a space ship view from the first person. In each mission, the player need to accomplish some objectives, like shoot and destroys enemy ships or base, escorting some ships, clearing mine field, etc....
A brief description of the objectives is given at the beginning of a mission. In some situations, the player has some wingmen, and it can controls them by giving order like attack enemy, retreat, protect the base etc... A mission is composed of different sectors which has differents objectives.
When the objectives of the current sector is complete, the player needs to go the nearest NAV point, when he can wrap to the next sector. In the last sector, a warp gate is apparearing and the player need to go through it and complete the level. At the end of each episodes (one episode is 10 missions), there is a large base station to destroy.
When the player complete all the episodes (5 episodes), the game ends. The mission fails if : - The player got destroyed or - if an objective is not complete (like an important ship being destroyed by enemy).
Installation:
For Linux users, Download the No Gravity (Combo Bin+Data - Win32/Mac/Linux only)
for Linux i386 package and run the autopackage.
Download (31.6MB)
Added: 2006-02-16 License: GPL (GNU General Public License) Price:
1351 downloads
No-relay SMTP daemon T.00.02
No-relay SMTP daemon is a lightweight mail server whose sole purpose is to receive incoming messages. more>>
No-relay SMTP daemon is a lightweight mail server whose sole purpose is to receive incoming messages and deliver them to local users. Its main "feature" (or non-feature, really) is to be completely unable to relay messages to adjacent servers: if an incoming message is not addressed to a local mailbox, smtpd will reject it.
Another convenient feature is its automatic grey-listing of clients that allows you to efficiently reject spammers based on their behaviour. No-relay SMTP daemon can handle incoming email traffic for an unlimited number of domains (i.e. act as a MX for these domains) without the need for any configuration (other than creation of users mailboxes).
<<lessAnother convenient feature is its automatic grey-listing of clients that allows you to efficiently reject spammers based on their behaviour. No-relay SMTP daemon can handle incoming email traffic for an unlimited number of domains (i.e. act as a MX for these domains) without the need for any configuration (other than creation of users mailboxes).
Download (0.018MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
633 downloads
No Brainer SMTP 1.0
No Brainer SMTPNo Brainer SMTP provides a config-free simple SMTP sender. more>>
No Brainer SMTPNo Brainer SMTP provides a config-free simple SMTP sender.
No Brainer SMTP (nbSMTP) is a simple SMTP client suitable to run in chroot jails, in embedded systems, laptops, or workstations.
No Brainer SMTP major features:
- Fix some error handling problems.
- Added smtp_last_message() to improve verbosity in case of errors.
- Uses strtok if strsep is not found.
- Added OSX module, refer to README.OSX in tarball.
- Fix memory leaks when using a combination of rc files and command line options.
- Respond to nbsmtp --help nbsmtp -h and nbsmtp --version with the expected behavior.
- Improve sending big mails or mails with attachments.
Main features:
- SSL/TLS and STARTTLS support
- SYSLOG logging support (using LOG_MAIL facility)
- SASL (LOGIN, PLAIN and CRAMMD5) support
- IPv6 support
- Configuration file support
- Sendmail compatibility
- Queue supportSSL/TLS and STARTTLS support
- SYSLOG logging support (using LOG_MAIL facility)
- SASL (LOGIN, PLAIN and CRAMMD5) support
- IPv6 support
- Configuration file support
- Sendmail compatibility
- Queue support
<<lessNo Brainer SMTP (nbSMTP) is a simple SMTP client suitable to run in chroot jails, in embedded systems, laptops, or workstations.
No Brainer SMTP major features:
- Fix some error handling problems.
- Added smtp_last_message() to improve verbosity in case of errors.
- Uses strtok if strsep is not found.
- Added OSX module, refer to README.OSX in tarball.
- Fix memory leaks when using a combination of rc files and command line options.
- Respond to nbsmtp --help nbsmtp -h and nbsmtp --version with the expected behavior.
- Improve sending big mails or mails with attachments.
Main features:
- SSL/TLS and STARTTLS support
- SYSLOG logging support (using LOG_MAIL facility)
- SASL (LOGIN, PLAIN and CRAMMD5) support
- IPv6 support
- Configuration file support
- Sendmail compatibility
- Queue supportSSL/TLS and STARTTLS support
- SYSLOG logging support (using LOG_MAIL facility)
- SASL (LOGIN, PLAIN and CRAMMD5) support
- IPv6 support
- Configuration file support
- Sendmail compatibility
- Queue support
Download (0.10MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
975 downloads
No-Referrer 1.0.1
No-Referrer is a Firefox extension that adds an entry to the context menu that lets you open a link in a new tab more>>
No-Referrer is a Firefox extension that adds an entry to the context menu that lets you open a link in a new tab, without sending the referrer information.
<<less Download (0.003MB)
Added: 2007-07-30 License: MPL (Mozilla Public License) Price:
820 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above wordfast no funciona search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed