Re: [Dspace-tech] using SWORD with URLs/URIs instead of actual files

2012-09-13 Thread Darren Arsenault
Hi all,

Using DSpace 1.8.0, JSPUI.

I am looking to implement SWORDv2 to make uploads from a remote server. The 
issue that I am having is that I want to send the metadata for my item AND a 
link to the item on the remote server only, not the item itself. (I am writing 
my own basic client for this, which is not quite finished yet—I am thinking 
ahead.)

In DSpace I have defined a new metadata schema and added a URL field for items, 
but SWORD does not know how to work with my custom schema, so I am at a loss as 
to how to send the URL with the upload. Of course I can send the data, but it 
will simply be ignored.

I have looked at the dc.relation.uri field, but it doesn't seem like the 
correct one to use, as it is meant to be for a related item, not the item 
itself. I am hoping that someone out there has a better idea. Thanks in advance 
for any help/feedback.

Good-day and be well,

Darren Arsenault
Programmer
Algonquin College
1385 Woodroffe Avenue
Ottawa, ON, K2G 1V8

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] using SWORD with URLs/URIs instead of actual files

2012-09-13 Thread helix84
On Thu, Sep 13, 2012 at 2:58 PM, Darren Arsenault
arse...@algonquincollege.com wrote:
 I have looked at the dc.relation.uri field, but it doesn't seem like the 
 correct one to use, as it is meant to be for a related item, not the item 
 itself.

The authoritative source to decide that would be
http://dublincore.org/documents/dcmi-terms/

We've been usig dc.relation.uri the way you suggested (link to the
same item in a different system, although usually not the bitstream)
in our repositories, that's not to say we're right. Just check with
DCMI.

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] dspace.baseUrl

2012-09-13 Thread helix84
OK guys, what is this? Is this intentional?

dspace.baseUrl = ${dspace.baseUrl}

https://github.com/DSpace/DSpace/blob/master/dspace/config/dspace.cfg#L33

It came from here:

https://github.com/DSpace/DSpace/commit/fb69ec7ce26670f346a4e3e1fe35f8a815d80e56#L6R28

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Multilingual UI problem

2012-09-13 Thread helix84
On Thu, Sep 13, 2012 at 4:10 PM, Calloni, Rodrigo rcall...@iadb.org wrote:
 When we first set the system we assumed that the DSpace UI would only show
 the facet for Country that relates to the UI selected language. But instead
 it is showing the duplication as you can see in picture 1.

 I wonder if this is a known issue. Also where in the dspace configuration
 we set the language sensibility.

Hi Rodrigo,

I'm afraid I'll have to disappoint you, this is the expected
behaviour. There's no magic switch you can turn to change it.

It's not that simple to change in XSL, either, mainly because DRI
doesn't contain the currently selected language. I have reported this
in some Jira issue, but it turned out it's a layering problem that's
not easy to resolve.

This is a workaround I use:
xsl:variable name=currentLanguage
select=substring(/dri:document/dri:meta/dri:userMeta/dri:metadata[@element='language'
and @qualifier='RFC3066'][1], 1, 2)/
It kinda works because the order of languages corresponds to what the
browser requests, but you will have to match it up with what languages
your repository offers.

You will have to turn to @mire for help. Hopefully they will think of
a solution and we all will benefit from it in the next DSpace version.

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Multilingual UI problem

2012-09-13 Thread Calloni, Rodrigo
Thanks again helix

I wonder if you could guide me through the work around you have. Basically 
which file I should change and where within the file?

I hope not to need to ask these questions sometime soon.

Thanks again
Rodrigo

Rodrigo Calloni
System Librarian
Felipe Herrera Library
Knowledge and Learning Sector
Tel: 202-623-2952
Fax: 202-623-3183

1300 New York Avenue, N.W.
Washington, D.C. 20577
USA
www.iadb.org

Knowledge for Development Challenges
  Please consider the environment before printing this email


-Original Message-
From: ivan.ma...@gmail.com [mailto:ivan.ma...@gmail.com] On Behalf Of helix84
Sent: Thursday, September 13, 2012 10:25 AM
To: Calloni, Rodrigo
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Multilingual UI problem

On Thu, Sep 13, 2012 at 4:10 PM, Calloni, Rodrigo rcall...@iadb.org wrote:
 When we first set the system we assumed that the DSpace UI would only 
 show the facet for Country that relates to the UI selected language. 
 But instead it is showing the duplication as you can see in picture 1.

 I wonder if this is a known issue. Also where in the dspace 
 configuration we set the language sensibility.

Hi Rodrigo,

I'm afraid I'll have to disappoint you, this is the expected behaviour. There's 
no magic switch you can turn to change it.

It's not that simple to change in XSL, either, mainly because DRI doesn't 
contain the currently selected language. I have reported this in some Jira 
issue, but it turned out it's a layering problem that's not easy to resolve.

This is a workaround I use:
xsl:variable name=currentLanguage
select=substring(/dri:document/dri:meta/dri:userMeta/dri:metadata[@element='language'
and @qualifier='RFC3066'][1], 1, 2)/
It kinda works because the order of languages corresponds to what the browser 
requests, but you will have to match it up with what languages your repository 
offers.

You will have to turn to @mire for help. Hopefully they will think of a 
solution and we all will benefit from it in the next DSpace version.

Regards,
~~helix84
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] dspace.baseUrl

2012-09-13 Thread helix84
I should have looked around, it is intentional:

dspace.dir = ${dspace.dir}
dspace.hostname = ${dspace.hostname}

There is even a comment that says it should be set in
build.properties. Confused the hell out of me anyway.

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] dspace.baseUrl

2012-09-13 Thread LeVan,Ralph
It must be a sad life I lead, but that's the best laugh I've had today!

Ralph

-Original Message-
From: helix84 [mailto:heli...@centrum.sk] 
Sent: Thursday, September 13, 2012 9:24 AM
To: dspace-tech; Steve Swinsburg; Mark Wood
Subject: [Dspace-tech] dspace.baseUrl

OK guys, what is this? Is this intentional?

dspace.baseUrl = ${dspace.baseUrl}

https://github.com/DSpace/DSpace/blob/master/dspace/config/dspace.cfg#L3
3

It came from here:

https://github.com/DSpace/DSpace/commit/fb69ec7ce26670f346a4e3e1fe35f8a8
15d80e56#L6R28

Regards,
~~helix84


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and threat
landscape has changed and how IT managers can respond. Discussions will
include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Multilingual UI problem

2012-09-13 Thread helix84
On Thu, Sep 13, 2012 at 4:38 PM, Calloni, Rodrigo rcall...@iadb.org wrote:
 I wonder if you could guide me through the work around you have. Basically 
 which file I should change and where within the file?

Like I said, it's not easy. You need to change every place where
metadata is shown (item page, search and browse lists). That's _a lot_
of places. I gave you just the first brick for a house.

Facets, which are in your screenshots, are yet another beast which I
don't know how to tame yet. But @mire will be able to help you with
those.

 I hope not to need to ask these questions sometime soon.

No problem, ask away.

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] dspace.baseUrl

2012-09-13 Thread Hilton Gibson
Perhaps this will help:
http://wiki.lib.sun.ac.za/index.php/SUNScholar/Install_Dspace/S04#Server_Hostname


On 13 September 2012 16:34, LeVan,Ralph le...@oclc.org wrote:

 It must be a sad life I lead, but that's the best laugh I've had today!

 Ralph

 -Original Message-
 From: helix84 [mailto:heli...@centrum.sk]
 Sent: Thursday, September 13, 2012 9:24 AM
 To: dspace-tech; Steve Swinsburg; Mark Wood
 Subject: [Dspace-tech] dspace.baseUrl

 OK guys, what is this? Is this intentional?

 dspace.baseUrl = ${dspace.baseUrl}

 https://github.com/DSpace/DSpace/blob/master/dspace/config/dspace.cfg#L3
 3

 It came from here:

 https://github.com/DSpace/DSpace/commit/fb69ec7ce26670f346a4e3e1fe35f8a8
 15d80e56#L6R28

 Regards,
 ~~helix84

 
 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and threat
 landscape has changed and how IT managers can respond. Discussions will
 include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech




 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech




-- 
*Hilton Gibson*
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] dspace.baseUrl

2012-09-13 Thread Mark H. Wood
On Thu, Sep 13, 2012 at 10:34:51AM -0400, LeVan,Ralph wrote:
 It must be a sad life I lead, but that's the best laugh I've had today!
 
 Ralph
 
 -Original Message-
 From: helix84 [mailto:heli...@centrum.sk] 
 Sent: Thursday, September 13, 2012 9:24 AM
 To: dspace-tech; Steve Swinsburg; Mark Wood
 Subject: [Dspace-tech] dspace.baseUrl
 
 OK guys, what is this? Is this intentional?
 
 dspace.baseUrl = ${dspace.baseUrl}
 
 https://github.com/DSpace/DSpace/blob/master/dspace/config/dspace.cfg#L3
 3
 
 It came from here:
 
 https://github.com/DSpace/DSpace/commit/fb69ec7ce26670f346a4e3e1fe35f8a8
 15d80e56#L6R28

I think it's this:

  https://jira.duraspace.org/browse/DS-1208

The commit message references DS-1209 but I think that's a typo.

-- 
Mark H. Wood, Lead System Programmer   mw...@iupui.edu
Asking whether markets are efficient is like asking whether people are smart.


pgp6pTyvsa7PT.pgp
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] using SWORD to upload from remote server

2012-09-13 Thread Darren Arsenault
Hi all,

DSpace 1.8.0, JSPUI.

I am a little stumped as to what has happened here...

I finished writing my client, and I made an upload from the remote server to 
DSpace successfully. The item appeared in workflow and I approved it for entry 
into the repository. The fields that are populated from Atom tags (title, 
summary) were filled in correctly, but none of my metadata fields were filled 
in. Perhaps my syntax is incorrect?

For metadata I am using tags such as:

simpledc.typeTYPE/simpledc.type
simpledc.languageLANGUAGE/simpledc.language
etc.

and I have confirmed that these fields are mapped correctly in 
SWORDv2-server.cfg; simpledc.type = dc.type; and simpledc.language = 
dc.language.iso, etc.

Am I using these tags incorrectly? Any help would be greatly appreciated.

Good-day and be well,

Darren Arsenault
Programmer
Algonquin College
1385 Woodroffe Avenue
Ottawa, ON, K2G 1V8

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Multilingual UI problem

2012-09-13 Thread Calloni, Rodrigo
Hi helix

I just found out that we don't use DSpace native search for searching it. 
Instead we use another search engine which indexes our institutional data.

So we will work to fix the search engine instead of DSpace.

And you imagined that facets were a beast :) For us it is more than that lol

Rodrigo

Rodrigo Calloni
System Librarian
Felipe Herrera Library
Knowledge and Learning Sector
Tel: 202-623-2952
Fax: 202-623-3183

1300 New York Avenue, N.W.
Washington, D.C. 20577
USA
www.iadb.org

Knowledge for Development Challenges
  Please consider the environment before printing this email


-Original Message-
From: ivan.ma...@gmail.com [mailto:ivan.ma...@gmail.com] On Behalf Of helix84
Sent: Thursday, September 13, 2012 10:54 AM
To: Calloni, Rodrigo
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Multilingual UI problem

On Thu, Sep 13, 2012 at 4:38 PM, Calloni, Rodrigo rcall...@iadb.org wrote:
 I wonder if you could guide me through the work around you have. Basically 
 which file I should change and where within the file?

Like I said, it's not easy. You need to change every place where metadata is 
shown (item page, search and browse lists). That's _a lot_ of places. I gave 
you just the first brick for a house.

Facets, which are in your screenshots, are yet another beast which I don't know 
how to tame yet. But @mire will be able to help you with those.

 I hope not to need to ask these questions sometime soon.

No problem, ask away.

Regards,
~~helix84
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Multilingual UI problem

2012-09-13 Thread helix84
On Thu, Sep 13, 2012 at 7:26 PM, Calloni, Rodrigo rcall...@iadb.org wrote:
 I just found out that we don't use DSpace native search for searching it. 
 Instead we use another search engine which indexes our institutional data.

I wasn't thinking. You said you have DSpace 1.6, which doesn't come
with Discovery and therefore no facets.

Which search engine are you using?

 So we will work to fix the search engine instead of DSpace.

 And you imagined that facets were a beast :) For us it is more than that lol

Actually facets in Solr are actually really easy. It's the Spring
stuff that wraps it in Discovery that I still haven't fully grasped.

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] queuing email notifications when mailserver can't be reached

2012-09-13 Thread Webb, Nicholas
I recently migrated our DSpace 1.7.2 instance to a new server. While waiting 
for our network team to grant access to our local SMTP server, I noticed that 
when DSpace can't reach the mailserver to send email notifications, the result 
is a Java error. (Now that we're up and running I don't have a stack trace on 
hand to send, but it was a connection timed out error during the attempt to 
send a notification.)

The engineer responsible for our mail server warns me that because of the 
possibility of unexpected maintenance, he can't guarantee that the mail server 
will be up 24/7. Local applications are expected to queue their own mail in an 
event of an outage.

Right now, if the mail server were to go down temporarily, the timeout error 
would interrupt the DSpace workflow (i.e., during review when a notification is 
sent after each step) and prevent further activity while we waited for it to 
come back up. This isn't a pressing problem for us at the moment, but it could 
become one in the future, particularly once we start receiving automated 
deposits.

Has this issue come up before? (Apologies if there's a simple solution I'm 
missing -- I'm not an IT professional, although I wear two hats as both the 
sysadmin and the primary end user of our DSpace instance.) It's beyond my own 
ability to implement, but a simple queue for outgoing notifications would be a 
helpful feature.

N

Nicholas Webb
Assistant Archivist
Mount Sinai Medical Center

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] using SWORD to upload from remote server

2012-09-13 Thread Darren Arsenault
Hi all,

Maybe everyone already knows this, but I figured I'd give an update anyway. I 
found the issue that I was having—it was the syntax, the tag names are supposed 
to be:

dcterms:typeTYPE/dcterms:type   and   
dcterms:languageLANGUAGE/dcterms:language.

The only issue that remains now is determining how to access a qualified tag, 
like relation.uri... I tried dcterms:relation.uri  and  
dcterms:relation:uri, but both of these caused internal errors (500).

As always, any help would be greatly appreciated. Thank you for your time. 
Good-day and be well. 

Darren Arsenault
Programmer
Algonquin College
1385 Woodroffe Avenue
Ottawa, ON, K2G 1V8

From: Darren Arsenault [arse...@algonquincollege.com]
Sent: September-13-12 1:15 PM
To: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] using SWORD to upload from remote server

Hi all,

DSpace 1.8.0, JSPUI.

I am a little stumped as to what has happened here...

I finished writing my client, and I made an upload from the remote server to 
DSpace successfully. The item appeared in workflow and I approved it for entry 
into the repository. The fields that are populated from Atom tags (title, 
summary) were filled in correctly, but none of my metadata fields were filled 
in. Perhaps my syntax is incorrect?

For metadata I am using tags such as:

simpledc.typeTYPE/simpledc.type
simpledc.languageLANGUAGE/simpledc.language
etc.

and I have confirmed that these fields are mapped correctly in 
SWORDv2-server.cfg; simpledc.type = dc.type; and simpledc.language = 
dc.language.iso, etc.

Am I using these tags incorrectly? Any help would be greatly appreciated.

Good-day and be well,

Darren Arsenault
Programmer
Algonquin College
1385 Woodroffe Avenue
Ottawa, ON, K2G 1V8

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] queuing email notifications when mailserver can't be reached

2012-09-13 Thread helix84
Hi Nicholas,

that sounds like legitimate concern. Could you please file you feature
request in our Jira?

https://jira.duraspace.org/browse/

It most likely won't be addressed before 4.0 which is due in one year,
but we need to track the idea somewhere to remember we should add it.

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] queuing email notifications when mailserver can't be reached

2012-09-13 Thread Mark H. Wood
Well, the simple(?) way would be to run an MTA on any machine that
needs to send mail, and configure it to forward through the corporate
MTA -- this is often referred to as a smarthost forward.  MTAs exist
to queue mail and deliver it when they can.  Applications (such as
DSpace) shouldn't need to duplicate them.

-- 
Mark H. Wood, Lead System Programmer   mw...@iupui.edu
Asking whether markets are efficient is like asking whether people are smart.


pgpIafi52uWMp.pgp
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] queuing email notifications when mailserver can't be reached

2012-09-13 Thread helix84
On Thu, Sep 13, 2012 at 10:48 PM, Mark H. Wood mw...@iupui.edu wrote:
 Well, the simple(?) way would be to run an MTA on any machine that
 needs to send mail, and configure it to forward through the corporate
 MTA -- this is often referred to as a smarthost forward.  MTAs exist
 to queue mail and deliver it when they can.  Applications (such as
 DSpace) shouldn't need to duplicate them.

I see, so that's why I never ran into this problem. I was smart enough
to configure my MTA as smarthost :)

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech