I am attempting to make a mailing system using a local mailserver (Apache James Mailserver), also using the JavaMail and JFA APIs Can i do that ? any body has an idea about the ideal way to accomplish such a goal?
using James MailServer to Create a MailingSystem deplayed on Glassfish
179 Views Asked by primeFaceUser At
2
There are 2 best solutions below
0
ieugen
On
You probably can. Apache James comes packaged as a WAR, but you will have to build it. Just get the sources from [1] with SVN or git [2]. Build them with Maven and check under app/target directory. You will see a WAR file along with the normal standalone, zip packaged distribution.
Related Questions in APACHE
- .htaccess redirect 403 error files to 404 error document
- RestApi server code is not workinng
- Convert Apache VirtualHost to nginx Server Block for Dynamic Subdomains
- Looking the Method that MANUALLY INSTALL PHP on OSX Yosemite
- Premature end of script on VPS
- Rasterization with Javascript looks different on Apache server
- Vagrant - Ansible error installing Apache
- Can't use subdomain in Chrome using Apache (XAMPP)
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- Redirect keystone app to sub directory using htaccess
- How can I integrate Solr5.1.0 with Nutch1.10
- Disconnect Client connected to cgi application
- Solr ping taking time during full import
- How to redirect an incoming request to specific serverName to different server in apache2?
- What is the correct way to link Django Flatpages?
Related Questions in JAKARTA-MAIL
- Sending emails from a (distributable) desktop application
- How can I fetch emails on Android?
- How can i get inline images from an email?
- javax.mail.getValidSentAddresses()
- Why my javamail program not running through jdeveloper?
- How to determine the smtp server save send mails or not?
- Getting Null Pointer Exception while sending mail in JAVA
- How to handle inline image added by user in email client
- JavaMail - Unable to send mail using SSL
- how to use javamail to add an excel file in mail body
- Javamail ClassCastException when sending multipart messages
- Amazon Simple Email Service (SES) - Should I use SMTP Interface or SES API?
- JavaMail set domain in property
- Inline attachment MIME type in Apache Came
- Send e-mail with attachment
Related Questions in MAIL-SERVER
- Greenmail WebApp server API
- Spam classification and 127.0.0.1 in email headers
- Unable to connect to outlook.office365.com for processing emails with Perl Module Mail::IMAPClient
- Second mx records for transactional email of web app
- How to configure the Sender address in phpmailer library
- Cannot ssh to server as I install poste.io on OVH dedicated server
- Extract DNS record (MX) details from name server reply c++
- Trouble creating own mailserver
- Are there any Email Saas providers which allows creation of email ids using APIs?
- How to check if a mailserver uses SSL for IMAP communication (Ruby)
- SMTP Error Issue - PHPMailer
- Error from amavisd-new-cronjob sa-sync
- Send / Receive Emails through external VServer with Plesk?
- Reading Email from Inbox c#
- OSX Mavericks, how to debug local rails app email issues
Related Questions in JAMES
- How to extract attachment using Mime4j 0.7.2
- apache james : mail server
- Apache James Mail Server: Where to put custom Mailets?
- Mails sent using Apache James are not delivered
- [email protected] with JAMES
- How to connect to MailServer using JavaMail
- Cannot connect to mailserver using javamail
- Webmail wicket widget to use in own application?
- Apache james beta5 in maven repository
- Apache James 2.3.2 won't write to MySQL
- james not picking up mysql connector jar
- How to hook a listener to the SSL Handshake?
- Apache James - missing charset information in message
- How to use JAMES (Java Mail Server) in windows 11 JDK 17
- using James MailServer to Create a MailingSystem deplayed on Glassfish
Related Questions in GLASSFISH-4
- GlassFish 4.0 CDI deployment failure + Apache Spark
- glassfish adapter missing in eclipse kepler
- GlassFish 4 server not starting
- build-impl.xml : 1052 :The module has not been deployed. See the server log for details
- Failed to send an email after migration from Glassfish 2.1 to Glassfish 4.1
- installing DBpedia spotlight on windows 7
- HTTP Status 500 - Internal Server Error when return object
- How can I add GlassFish 4.1 server in Eclipse Neon 2?
- stop the glass-fish server after closing the tab of the web application in netbeans?
- EJB Null point exception
- GlassFish 4.1 + Hibernate 4.3 = Cannot override mapping through orm.xml
- GlassFish 4.1 - simultaneous access to web admin console of two domains of the same GF
- Custom events for GlassFish in Java Flight Recorder / Java Mission Control
- Setting non-serializable attribute value into HttpSession
- Invalid URL Pattern When Deploying To Glassfish 4.1
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, you can do that. Yes, it's a lot of work. If you want to do most of the work yourself, you can find some simple example programs on the JavaMail project page. You'll find some more complete programs on the JavaMail third party products page.