regular hotmail
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 687
Gotmail 0.9.0
Gotmail is a utility to non-interactively download email from a Hotmail account. more>>
Gotmail is a utility to non-interactively download email from a Hotmail account. Gotmail project can download messages from all folders, messages from certain folders, or new messages only.
There are options to delete downloaded messages or mark them as read.
Gotmail can forward messages to other email addresses or save them as local mbox-style mailboxes.
Enhancements:
- Changelog AUTHORS gotmail.man Makefile.dist Makefile
- Makefile.dist NEWS PRESSRELEASE gotmail.spec
- Combined AUTHORS file and man page and removed AUTHORS file
- from package
- Updated Makefile and Makefile.dist to remove man page and
- AUTHORS file construction
- Removed PRESSRELEASE and NEWS code and files from the package
- Removed unused gotmail.spec.in file
- Fixed timestamp preservation issues in Makefiles using touch -r
<<lessThere are options to delete downloaded messages or mark them as read.
Gotmail can forward messages to other email addresses or save them as local mbox-style mailboxes.
Enhancements:
- Changelog AUTHORS gotmail.man Makefile.dist Makefile
- Makefile.dist NEWS PRESSRELEASE gotmail.spec
- Combined AUTHORS file and man page and removed AUTHORS file
- from package
- Updated Makefile and Makefile.dist to remove man page and
- AUTHORS file construction
- Removed PRESSRELEASE and NEWS code and files from the package
- Removed unused gotmail.spec.in file
- Fixed timestamp preservation issues in Makefiles using touch -r
Download (0.037MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
928 downloads
Regular Statement String 2.5.7
Regular Statement String (RSS) provides several libraries in C, Java, and COM. more>>
Regular Statement String (RSS) provides several libraries in C, Java, and COM to implement and demonstrate the key-value development method using well-designed "strings" (RSS) as the media. Regular Statement String also shows a way to write "Process Oriented" applications.
Enhancements:
- This release adds an implementation for SUN Solaris (SPARC).
<<lessEnhancements:
- This release adds an implementation for SUN Solaris (SPARC).
Download (0.33MB)
Added: 2007-04-12 License: Freeware Price:
926 downloads
RegURL 0.2
RegURL is an extension which applies a regular expression on the URL. more>>
RegURL is an extension which applies a regular expression on the URL.
A regular expression is a string that is used to describe or match a set of strings, according to certain syntax rules. For example, the regular expression bex can be used to describe (and search for) all of the instances of the string "ex" that occur at word breaks (signified by the b).
Thus in the phrase, "Texts for expert experimenters," the regular expresssion bex returns the "ex" in "expert" and "experimenters," but not in "Texts" (because the "ex" occurs inside the word there and not at the word break).
Regular expressions are used by many text editors and utilities to search and manipulate bodies of text based on certain patterns. Many programming languages support regular expressions for string manipulation.
For example, Perl and Tcl have a powerful regular expression engine built directly into their syntax. The set of utilities (including the editor ed and the filter grep) provided by Unix distributions were the first to popularize the concept of regular expressions.
"Regular expression" is often shortened in speech to regex, and in writing to regexp or regex (singular) or regexps, regexes, or regexen (plural).
<<lessA regular expression is a string that is used to describe or match a set of strings, according to certain syntax rules. For example, the regular expression bex can be used to describe (and search for) all of the instances of the string "ex" that occur at word breaks (signified by the b).
Thus in the phrase, "Texts for expert experimenters," the regular expresssion bex returns the "ex" in "expert" and "experimenters," but not in "Texts" (because the "ex" occurs inside the word there and not at the word break).
Regular expressions are used by many text editors and utilities to search and manipulate bodies of text based on certain patterns. Many programming languages support regular expressions for string manipulation.
For example, Perl and Tcl have a powerful regular expression engine built directly into their syntax. The set of utilities (including the editor ed and the filter grep) provided by Unix distributions were the first to popularize the concept of regular expressions.
"Regular expression" is often shortened in speech to regex, and in writing to regexp or regex (singular) or regexps, regexes, or regexen (plural).
Download (0.004MB)
Added: 2007-04-14 License: MPL (Mozilla Public License) Price:
927 downloads
Hmail 0.2
Hmail is a SuperKaramba theme to check for unread messages on one or more Hotmail accounts. more>>
Hmail is a SuperKaramba theme to check for unread messages on one or more Hotmail accounts. It uses gotmail (http://sourceforge.net/projects/gotmail) to do its work.
Feel free to use it and modify it as desired.
<<lessFeel free to use it and modify it as desired.
Download (0.067MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
936 downloads
regular expression parser 1.1
regular expression parser is a C++ regexp parser that accomplishes The Open Group specification Issue 6. more>>
regular expression parser is a C++ regexp parser that accomplishes The Open Group specification Issue 6, IEEE Std 1003.1, 2004 Edition.
regular expression parser allows you to parse input using regular expressions, and to retrieve parsed sub-expression matches in a few steps.
<<lessregular expression parser allows you to parse input using regular expressions, and to retrieve parsed sub-expression matches in a few steps.
Download (0.33MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
624 downloads
Python Regular Expression Builder 0.1.6
Python Regular Expression Builder is a wxPython GUI to the re python module. more>>
Python Regular Expression Builder is a wxPython GUI to the re python module; it will speed up the development of Python regular expression (similar to PCRE).
The GUI is simple and features 3 parts:
- A text box where the text to be analyzed is displayed
- A text box where the regular expression to be applied is displayed
- A tree control where the results are displayed
When one of the two textboxes change the regex is compiled and applied. Errors in the regex are shown in a statusbar.
Pyreb ships with a simple XMLRPC server that can be used to control pyreb from an external application. It must be started using the
Tools/Start XMLRPC Server
menu item. The XMLRPC server understands 4 methods:
- Pyreb.setText(Txt)
- Pyreb.getText()
- Pyreb.setRegex(Txt)
- Pyreb.getRegex()
The first two get/set the text in the uppermost section; the last two get/set the regex in the medium section. Once the text/regex is set the match is recalculated and shown, as it would happen in interactive usage.
A sample session:
>>> import xmlrpclib
>>> a = xmlrpclib.ServerProxy("http://localhost:17787")
>>> a.system.listMethods()
[Pyreb.getRegex, Pyreb.getText, Pyreb.setRegex, Pyreb.setText, system.listMethods, system.methodHelp, system.methodSignature]
>>> a.Pyreb.setText("abc")
setText
>>> a.Pyreb.getText()
abc
>>> a.Pyreb.setRegex(a?(bc){1,})
setRegex
These commands set the text abc in the "Text to analyze" edit box, the regex in the "Regex to apply" edit box and recomputes the match, shown in the lower "Results" tree.
<<lessThe GUI is simple and features 3 parts:
- A text box where the text to be analyzed is displayed
- A text box where the regular expression to be applied is displayed
- A tree control where the results are displayed
When one of the two textboxes change the regex is compiled and applied. Errors in the regex are shown in a statusbar.
Pyreb ships with a simple XMLRPC server that can be used to control pyreb from an external application. It must be started using the
Tools/Start XMLRPC Server
menu item. The XMLRPC server understands 4 methods:
- Pyreb.setText(Txt)
- Pyreb.getText()
- Pyreb.setRegex(Txt)
- Pyreb.getRegex()
The first two get/set the text in the uppermost section; the last two get/set the regex in the medium section. Once the text/regex is set the match is recalculated and shown, as it would happen in interactive usage.
A sample session:
>>> import xmlrpclib
>>> a = xmlrpclib.ServerProxy("http://localhost:17787")
>>> a.system.listMethods()
[Pyreb.getRegex, Pyreb.getText, Pyreb.setRegex, Pyreb.setText, system.listMethods, system.methodHelp, system.methodSignature]
>>> a.Pyreb.setText("abc")
setText
>>> a.Pyreb.getText()
abc
>>> a.Pyreb.setRegex(a?(bc){1,})
setRegex
These commands set the text abc in the "Text to analyze" edit box, the regex in the "Regex to apply" edit box and recomputes the match, shown in the lower "Results" tree.
Download (0.018MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
619 downloads
Grepmail 5.30.33
Grepmail searches for emails in a normal or compressed mailbox using a regular expression or date constraint. more>>
Grepmail searches for emails in a normal or compressed mailbox using a regular expression or date constraint.
To install this package, change to the directory where you unarchived this distribution and do the following steps:
perl Makefile.PL
make
make test
make install
Main features:
- Gzip, bzip2, tzip support
- Piped input supported (compressed or not)
- Supports complex dates like "between Jan 15, 1999 and 5 weeks ago"
- Can ignore non-text MIME attachments
- Can search only the header or only the body of an email
- Can recurse subdirectories
- Automatically optimizes for speed vs. flexibility when searching based on date constraints.
<<lessTo install this package, change to the directory where you unarchived this distribution and do the following steps:
perl Makefile.PL
make
make test
make install
Main features:
- Gzip, bzip2, tzip support
- Piped input supported (compressed or not)
- Supports complex dates like "between Jan 15, 1999 and 5 weeks ago"
- Can ignore non-text MIME attachments
- Can search only the header or only the body of an email
- Can recurse subdirectories
- Automatically optimizes for speed vs. flexibility when searching based on date constraints.
Download (0.51MB)
Added: 2007-03-03 License: GPL (GNU General Public License) Price:
968 downloads
glark 1.8.0
glark offers grep-like searching of text files. more>>
glark offers grep-like searching of text files, with very powerful, complex regular expressions (e.g., "/foow+/ and /bar[^d]*baz$/ within 4 lines of each other").
glark offers: Perl compatible regular expressions, highlighting of matches, context around matches, complex expressions (``and and ``or), and automatic exclusion of non-text files.
<<lessglark offers: Perl compatible regular expressions, highlighting of matches, context around matches, complex expressions (``and and ``or), and automatic exclusion of non-text files.
Download (0.034MB)
Added: 2007-02-11 License: LGPL (GNU Lesser General Public License) Price:
985 downloads
RegExplorer 0.1.6
RegExplorer project is a regular Expression Explorer. more>>
RegExplorer project is a regular Expression Explorer.
It allows for writing regular expressions and visually see the matches, thus making regular expression much easier to write and maintain.
<<lessIt allows for writing regular expressions and visually see the matches, thus making regular expression much easier to write and maintain.
Download (0.028MB)
Added: 2006-11-03 License: QPL (QT Public License) Price:
1086 downloads
regexxer 0.9
regexxer project is a nifty search/replace tool featuring Perl-style regular expressions. more>>
regexxer project is a nifty search/replace tool featuring Perl-style regular expressions.
It features recursive search through directory trees and Perl-style regular expressions (using libpcre). The user interface is similar to the project-wide search/replace dialog in the Sniff+ IDE, but regexxer aims to surpass it.
<<lessIt features recursive search through directory trees and Perl-style regular expressions (using libpcre). The user interface is similar to the project-wide search/replace dialog in the Sniff+ IDE, but regexxer aims to surpass it.
Download (0.29MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
977 downloads

RegexSR for liunx 1.0.0
A tool to create and test complex regular expressions. more>> RegexSR is a very easy-to-use and powerful tool (written in Java) to create and test complex regular expressions.
The plugin system provides extra functionalities, such as transforming expressions into Java code, and allows the user to create his own extensions.
Features include testing regular expressions, handling text through regular expressions or plugins, renaming files, developing plugins, and managing expressions in the repository.<<less
Download (502KB)
Added: 2009-04-10 License: Freeware Price: Free
196 downloads
MrPostman 1.2
MrPostman is a java program that allows you to access Yahoo Mail, Hotmail and other webmail services. more>>
MrPostman is a java program that allows you to access Yahoo Mail, Hotmail and other webmail services directly from your favorite mail client.
MrPostman project converts the web pages of your favorite webmail provider to e-mails and provides the standard POP interface to your mail client (e.g. Outlook Express, Netscape or Mozilla Mail, Thunderbird, Pegasus).
MrPostman is Free Software, released under the terms of the GNU Public License.
Send an e-mail to the appropriate mailing list, if you have any questions or would like to help with the project.
Currently supported webmail providers:
- Hotmail
- mail.com
- Yahoo
- gmail (Google mail)
- indiatimes.com
- juno
- rediffmail
- Gossamer mail
- Outlook Web Access (Exchange 5.5)
- Outlook Web Access 2003
Additionally it now supports the download of RSS news including pictures, excluding ads, ... Enjoy reading news offline!
Adding a new webmail provider might be as simple as writing a script of 50 lines. Feel free to add a script for your favourite provider and send it to us to be included in the next release.
Enhancements:
- MrPostman 1.2 improves the RSS functionality (multi page news, styles) and adds additional feeds (USA online, NY Times).
- Installation as Windows service was improved.
<<lessMrPostman project converts the web pages of your favorite webmail provider to e-mails and provides the standard POP interface to your mail client (e.g. Outlook Express, Netscape or Mozilla Mail, Thunderbird, Pegasus).
MrPostman is Free Software, released under the terms of the GNU Public License.
Send an e-mail to the appropriate mailing list, if you have any questions or would like to help with the project.
Currently supported webmail providers:
- Hotmail
- mail.com
- Yahoo
- gmail (Google mail)
- indiatimes.com
- juno
- rediffmail
- Gossamer mail
- Outlook Web Access (Exchange 5.5)
- Outlook Web Access 2003
Additionally it now supports the download of RSS news including pictures, excluding ads, ... Enjoy reading news offline!
Adding a new webmail provider might be as simple as writing a script of 50 lines. Feel free to add a script for your favourite provider and send it to us to be included in the next release.
Enhancements:
- MrPostman 1.2 improves the RSS functionality (multi page news, styles) and adds additional feeds (USA online, NY Times).
- Installation as Windows service was improved.
Download (1.1MB)
Added: 2005-11-30 License: GPL (GNU General Public License) Price:
1429 downloads
WebMail 0.7.10
WebMail is a www-frontend to IMAP/POP3 mailboxes. more>>
WebMail is a www-frontend to IMAP/POP3 mailboxes. You can compare it to the systems Hotmail, YahooMail etc use.
Main features:
- gives a user complete access to his POP3 or IMAP mailboxes via an easy-to-use web interface
- neither Java nor Javascript on the Clientside
- runs as Java Servlet (and Servlet 2.2 WebApp)
- pluggable services (IMAP, POP3, ...) through the Java Mail API
- configurable looknfeel through templates
- user configurable mailboxes: each folder may be on a different IMAP host
- sophisticated folder support
- support for multiple languages
- MIME support: images, html- and textfiles are shown via the webbrowser (configurable), all other files may be downloaded with a click
- fancy mail formatting: link highlighting, umlaut conversion, "smiley-substitution"
- Very fast compared to CGI scripts
- Modular concept with plugin support
- Easy administration (webinterface) and installation
<<lessMain features:
- gives a user complete access to his POP3 or IMAP mailboxes via an easy-to-use web interface
- neither Java nor Javascript on the Clientside
- runs as Java Servlet (and Servlet 2.2 WebApp)
- pluggable services (IMAP, POP3, ...) through the Java Mail API
- configurable looknfeel through templates
- user configurable mailboxes: each folder may be on a different IMAP host
- sophisticated folder support
- support for multiple languages
- MIME support: images, html- and textfiles are shown via the webbrowser (configurable), all other files may be downloaded with a click
- fancy mail formatting: link highlighting, umlaut conversion, "smiley-substitution"
- Very fast compared to CGI scripts
- Modular concept with plugin support
- Easy administration (webinterface) and installation
Download (5.2MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1265 downloads
Regular Expression Graphing Program 0.2
Regular Expression Graphing Program project is a regular expression graphing program. more>>
Regular Expression Graphing Program project is a regular expression graphing program.
This program is designed to take a regular expression and produce a graph of the state machine that is used to parse the regular expression.
It is useful for teaching regular expressions and state machines.
The program comes with a built-in tutorial and sample set of regular expressions.
Main features:
- This will not graph all the regular expressions. Some of the more advanced features of the engine are just not handled.
- We currently ``graph the ``group, no $1 (?:..) operator by displaying nothing. A box should be put around the expression.
- The boxes drawn by the program are a fixed with not related to the size of the text they contain. Text can easily overflow the box.
- The system is UNIX/Linux specific. This is caused by only one small section of code should anyone want to port this to a braindamaged operating system.
- Better use of color can be made. Specifically all the nodes do not have to be green. Come to think of it they call dont have to be rectangles either.
- Sometimes the lines connecting one section to another take some strange twists.
<<lessThis program is designed to take a regular expression and produce a graph of the state machine that is used to parse the regular expression.
It is useful for teaching regular expressions and state machines.
The program comes with a built-in tutorial and sample set of regular expressions.
Main features:
- This will not graph all the regular expressions. Some of the more advanced features of the engine are just not handled.
- We currently ``graph the ``group, no $1 (?:..) operator by displaying nothing. A box should be put around the expression.
- The boxes drawn by the program are a fixed with not related to the size of the text they contain. Text can easily overflow the box.
- The system is UNIX/Linux specific. This is caused by only one small section of code should anyone want to port this to a braindamaged operating system.
- Better use of color can be made. Specifically all the nodes do not have to be green. Come to think of it they call dont have to be rectangles either.
- Sometimes the lines connecting one section to another take some strange twists.
Download (4.3MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1113 downloads
Ragel State Machine Compiler 5.23
Ragel State Machine Compiler compiles state machines from regular languages. more>>
Ragel State Machine Compiler compiles finite state machines from regular languages into executable C/C++/Objective-C code. Ragel state machines can not only recognize byte sequences as regular expression machines do, but can also execute code at arbitrary points in the recognition of a regular language.
Ragel can also be thought of as a finite state transducer compiler where output symbols represent blocks of code that get executed instead of written to the output stream.
When you wish to write down a regular language you start with some simple regular language and build a bigger one using the regular language operators union, concatenation, kleene star, intersection and subtraction.
This is precisely the way you describe to Ragel how to compile your finite state machines. Ragel also understands operators that embed actions into machines and operators that control any non-determinism in machines.
Ragel FSMs are closed under all of Ragels regular language, action specification and priority assignment operators. This property allows arbitrary regular languages to be described. Complexity is limited only by available processing resources.
For example, you can make one machine that picks out specially formatted comments in C code, another machine that builds a list all function declarations and a third that identifies string constants then "or" them all together to make a single machine that performs all of these tasks concurrently and independently on one pass of the input.
Main features:
- Describe arbitrary state machines using regular language operators and/or state tables.
- NFA to DFA conversion.
- Hopcrofts state minimization.
- Embed any number of actions into machines at arbitrary places.
- Control non-determinism using priorities on transitions.
- Visualize output with Graphviz.
- Use byte, double byte or word sized alphabets.
- Generate C/C++/Objective-C code with no dependencies.
- Choose from table or control flow driven output.
Enhancements:
- The documentation and the Ruby code generator were improved.
<<lessRagel can also be thought of as a finite state transducer compiler where output symbols represent blocks of code that get executed instead of written to the output stream.
When you wish to write down a regular language you start with some simple regular language and build a bigger one using the regular language operators union, concatenation, kleene star, intersection and subtraction.
This is precisely the way you describe to Ragel how to compile your finite state machines. Ragel also understands operators that embed actions into machines and operators that control any non-determinism in machines.
Ragel FSMs are closed under all of Ragels regular language, action specification and priority assignment operators. This property allows arbitrary regular languages to be described. Complexity is limited only by available processing resources.
For example, you can make one machine that picks out specially formatted comments in C code, another machine that builds a list all function declarations and a third that identifies string constants then "or" them all together to make a single machine that performs all of these tasks concurrently and independently on one pass of the input.
Main features:
- Describe arbitrary state machines using regular language operators and/or state tables.
- NFA to DFA conversion.
- Hopcrofts state minimization.
- Embed any number of actions into machines at arbitrary places.
- Control non-determinism using priorities on transitions.
- Visualize output with Graphviz.
- Use byte, double byte or word sized alphabets.
- Generate C/C++/Objective-C code with no dependencies.
- Choose from table or control flow driven output.
Enhancements:
- The documentation and the Ruby code generator were improved.
Download (0.52MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
824 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above regular hotmail 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